diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..fc2ce47
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,14 @@
+
+# destination: "/var/www/html"
+destination: "./build"
+url: "www.nekojimi.moe" ## I don't care
+include: [ "pages", "static/css" ]
+
+
+ ## ##
+ ## ##
+
+ # #
+ ## ##
+ ## ##
+ ########
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..670aa5c
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1 @@
+
HHHHHHHHHHHHHHHHHHHHHHHHHH
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..d04d19b
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,28 @@
+
+
+
+
+ {{page.title}}
+
+
+
+
+
+ $$\ $$\ $$\ $$\ $$\
+ $$$\ $$ | $$ | \__| \__|
+ $$$$\ $$ | $$$$$$\ $$ | $$\ $$$$$$\ $$\ $$\ $$$$$$\$$$$\ $$\
+ $$ $$\$$ |$$ __$$\ $$ | $$ |$$ __$$\ \__|$$ |$$ _$$ _$$\ $$ |
+ $$ \$$$$ |$$$$$$$$ |$$$$$$ / $$ / $$ |$$\ $$ |$$ / $$ / $$ |$$ |
+ $$ |\$$$ |$$ ____|$$ _$$\ $$ | $$ |$$ |$$ |$$ | $$ | $$ |$$ |
+ $$ | \$$ |\$$$$$$$\ $$ | \$$\ \$$$$$$ |$$ |$$ |$$ | $$ | $$ |$$ |
+ \__| \__| \_______|\__| \__| \______/ $$ |\__|\__| \__| \__|\__|
+ $$\ $$ |
+ \$$$$$$ |
+ \______/
+
+
+ {{ content }}
+
+
+
+
diff --git a/build.sh b/build.sh
new file mode 100755
index 0000000..0c10d5e
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,2 @@
+jekyll build
+sudo -u www-data cp -r build/* /var/www/html
diff --git a/build/build.sh b/build/build.sh
new file mode 100755
index 0000000..0c10d5e
--- /dev/null
+++ b/build/build.sh
@@ -0,0 +1,2 @@
+jekyll build
+sudo -u www-data cp -r build/* /var/www/html
diff --git a/bwee/index.html b/build/bwee/index.html
similarity index 100%
rename from bwee/index.html
rename to build/bwee/index.html
diff --git a/index.html b/build/index.html
similarity index 100%
rename from index.html
rename to build/index.html
diff --git a/build/pages/moe.md b/build/pages/moe.md
new file mode 100644
index 0000000..182cd8a
--- /dev/null
+++ b/build/pages/moe.md
@@ -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]
diff --git a/build/static/css/style.css b/build/static/css/style.css
new file mode 100644
index 0000000..06814f0
--- /dev/null
+++ b/build/static/css/style.css
@@ -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; */
+
+}
diff --git a/build/static/deer.jpg b/build/static/deer.jpg
new file mode 100644
index 0000000..766bc9d
Binary files /dev/null and b/build/static/deer.jpg differ
diff --git a/pages/bwee.md b/pages/bwee.md
new file mode 100644
index 0000000..b00db28
--- /dev/null
+++ b/pages/bwee.md
@@ -0,0 +1,12 @@
+---
+title: "Secret deer page"
+permalink: "/bwee/"
+layout: "default"
+---
+{% include header.html %}
+# Hi sadie!!
+Here's some text yeah!!
+bmktmhlkgrtgdr
+gio
+
+
diff --git a/pages/index.md b/pages/index.md
new file mode 100644
index 0000000..d9edc2c
--- /dev/null
+++ b/pages/index.md
@@ -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
+ -
diff --git a/static/css/style.css b/static/css/style.css
index 06814f0..362887f 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -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;