Whoops I added the compiled files instead of the source
Jekyll Build & Deploy / Jekyll-Build-and-Deploy (push) Failing after 9s
Details
Jekyll Build & Deploy / Jekyll-Build-and-Deploy (push) Failing after 9s
Details
This commit is contained in:
parent
6a370031b9
commit
24571d4c5d
|
@ -0,0 +1,14 @@
|
|||
|
||||
# destination: "/var/www/html"
|
||||
destination: "./build"
|
||||
url: "www.nekojimi.moe" ## I don't care
|
||||
include: [ "pages", "static/css" ]
|
||||
|
||||
|
||||
## ##
|
||||
## ##
|
||||
|
||||
# #
|
||||
## ##
|
||||
## ##
|
||||
########
|
|
@ -0,0 +1 @@
|
|||
<h1>HHHHHHHHHHHHHHHHHHHHHHHHHH</h1>
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{page.title}}</title>
|
||||
<link href="/static/css/style.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<pre class="title">
|
||||
<span class="la"> $$\ $$\ </span><span class="lb">$$\ </span><span class="lc"> $$\ </span><span class="ld"> $$\ </span>
|
||||
<span class="la"> $$$\ $$ | </span><span class="lb">$$ | </span><span class="lc"> \__|</span><span class="ld"> \__| </span>
|
||||
<span class="la"> $$$$\ $$ | $$$$$$\ </span><span class="lb">$$ | $$\ $$$$$$\ </span><span class="lc"> $$\ $$\ </span><span class="ld">$$$$$$\$$$$\ $$\ </span>
|
||||
<span class="la"> $$ $$\$$ |$$ __$$\ </span><span class="lb">$$ | $$ |$$ __$$\</span><span class="lc"> \__|$$ |</span><span class="ld">$$ _$$ _$$\ $$ | </span>
|
||||
<span class="la"> $$ \$$$$ |$$$$$$$$ |</span><span class="lb">$$$$$$ / $$ / $$ </span><span class="lc">|$$\ $$ |</span><span class="ld">$$ / $$ / $$ |$$ | </span>
|
||||
<span class="la"> $$ |\$$$ |$$ ____|</span><span class="lb">$$ _$$\ $$ | $$ </span><span class="lc">|$$ |$$ |</span><span class="ld">$$ | $$ | $$ |$$ | </span>
|
||||
<span class="la"> $$ | \$$ |\$$$$$$$\ </span><span class="lb">$$ | \$$\ \$$$$$$ </span><span class="lc">|$$ |$$ |</span><span class="ld">$$ | $$ | $$ |$$ | </span>
|
||||
<span class="la"> \__| \__| \_______|</span><span class="lb">\__| \__| \______/</span><span class="lc"> $$ |\__|</span><span class="ld">\__| \__| \__|\__| </span>
|
||||
<span class="la"> </span><span class="lb"> </span><span class="lc"> $$\ $$ | </span><span class="ld"> </span>
|
||||
<span class="la"> </span><span class="lb"> </span><span class="lc"> \$$$$$$ | </span><span class="ld"> </span>
|
||||
<span class="la"> </span><span class="lb"> </span><span class="lc"> \______/ </span><span class="ld"> </span>
|
||||
</pre>
|
||||
<div class="content">
|
||||
{{ content }}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,2 @@
|
|||
jekyll build
|
||||
sudo -u www-data cp -r build/* /var/www/html
|
|
@ -0,0 +1,2 @@
|
|||
jekyll build
|
||||
sudo -u www-data cp -r build/* /var/www/html
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title:"Moe"
|
||||
permalink: "/moe/"
|
||||
---
|
||||
!(moe)[http://2.bp.blogspot.com/-9pnn99BFytw/UjrKCe5EPLI/AAAAAAAANmg/51JddvfD32w/s1600/Los+Simpsons+Wallpapers+Gratis+-+%252884%2529.jpg]
|
|
@ -0,0 +1,75 @@
|
|||
/* #003f5c, #58508d, #bc5090, #ff6361, #ffa600 */
|
||||
|
||||
:root {
|
||||
--color-background: #003f5c;
|
||||
--color-content-back: #58508d;
|
||||
|
||||
--col-a: #003f5c;
|
||||
--col-b: #58508d;
|
||||
--col-c: #bc5090;
|
||||
--col-d: #ff6361;
|
||||
--col-e: #ffa600;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--color-background);
|
||||
color: #eeeeee;
|
||||
font-family: monospace;
|
||||
font-size: 24px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
/* transform: skew(1deg, 1deg); */
|
||||
}
|
||||
|
||||
.content {
|
||||
background-color: var(--color-content-back);
|
||||
/*width: 70%;*/
|
||||
padding: 16px;
|
||||
border-radius: 16px;
|
||||
|
||||
}
|
||||
|
||||
.container {
|
||||
width:70%;
|
||||
justify-content: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg)
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg)
|
||||
}
|
||||
}
|
||||
|
||||
.la {
|
||||
color: var(--col-b);
|
||||
text-shadow: 0 0 8px var(--col-b);
|
||||
}
|
||||
.lb {
|
||||
color: var(--col-c);
|
||||
text-shadow: 0 0 8px var(--col-c);
|
||||
}
|
||||
.lc {
|
||||
color: var(--col-d);
|
||||
text-shadow: 0 0 8px var(--col-d);
|
||||
}
|
||||
.ld {
|
||||
color: var(--col-e);
|
||||
text-shadow: 0 0 8px var(--col-e);
|
||||
}
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
/* background: linear-gradient(to right, #ff00ff, #ff0000); */
|
||||
/* background-clip: text; */
|
||||
/* -webkit-text-fill-color: transparent; */
|
||||
/* text-shadow: 0 0 8px #787878; */
|
||||
/* animation: spin 2000ms linear infinite; */
|
||||
/* animation: 5s linear 0s infinite normal none running spin; */
|
||||
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 258 KiB |
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: "Secret deer page"
|
||||
permalink: "/bwee/"
|
||||
layout: "default"
|
||||
---
|
||||
{% include header.html %}
|
||||
# Hi sadie!!
|
||||
Here's some text yeah!!
|
||||
bmktmhlkgrtgdr
|
||||
gio
|
||||
|
||||

|
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
title: "Nekojimi's Awesome Webpage!!"
|
||||
permalink: "/"
|
||||
layout: "default"
|
||||
---
|
||||
# it's me I'm kity
|
||||
|
||||
Hi :3 My name is nekojimi and I'm a catboy :3 I like programming and cuddles!
|
||||
And this website is for showing off things I've made!
|
||||
here's some fun facts about me!~
|
||||
|
||||
- i'm a cat!!
|
||||
- i'm pan <3 that means I like boys and girls and everything else
|
||||
- i'm also some kind of left-anarchist :D at least for the most part
|
||||
- i tell computers what to do for a living but also for fun! i program in Java, C++, sometimes other stuff
|
||||
-
|
|
@ -1,8 +1,8 @@
|
|||
/* #003f5c, #58508d, #bc5090, #ff6361, #ffa600 */
|
||||
|
||||
:root {
|
||||
--color-background: #003f5c;
|
||||
--color-content-back: #58508d;
|
||||
--color-background: #111111;
|
||||
--color-content-back: #222222;
|
||||
|
||||
--col-a: #003f5c;
|
||||
--col-b: #58508d;
|
||||
|
|
Loading…
Reference in New Issue