diff --git a/html/.template.html b/html/.template.html
new file mode 100644
index 0000000..5ee0886
--- /dev/null
+++ b/html/.template.html
@@ -0,0 +1,39 @@
+
+
+
+ Liliesh's Homepage
+
+
+
+
+
+
+
+
+
+
+
Liliesh's Homepage!
+
I like to meow! :3
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/html/about_me.css b/html/about_me.css
new file mode 100644
index 0000000..803842f
--- /dev/null
+++ b/html/about_me.css
@@ -0,0 +1,5 @@
+#avatar {
+ filter: url(#pixelate);
+ width: 200px;
+ height: 200px;
+}
\ No newline at end of file
diff --git a/html/about_me.html b/html/about_me.html
new file mode 100644
index 0000000..b09e066
--- /dev/null
+++ b/html/about_me.html
@@ -0,0 +1,64 @@
+
+
+
+ Liliesh's Homepage
+
+
+
+
+
+
+
+
+
+
+
+
Liliesh's Homepage!
+
I like to meow! :3
+
+
+
+
+
+ [liliesh@xenia homepage]$ tiv assets/avatar.png
+
+
+
+
+
+
+
+
+
+
+ [liliesh@xenia homepage]$ cd ~/Documents
+ [liliesh@xenia Documents]$ cat about_meeee.txt
+ Hiiii! it's meeee, Liliesh. Also called Maya in some spaces.
+ I like to fiddle around with anything that resolves within the world of IT! And sometimes also other things!
+ My main focus is on exploring/checking out software (preferred Open Source) and doing homelab things.
+
+ You can find stuff from me on the following platforms:
+
+
+ [liliesh@xenia Documents]$ exit_
+
+
+
+
\ No newline at end of file
diff --git a/html/assets/avatar.png b/html/assets/avatar.png
new file mode 100644
index 0000000..7f81095
Binary files /dev/null and b/html/assets/avatar.png differ
diff --git a/html/assets/blobfox-88x31.png b/html/assets/blobfox-88x31.png
deleted file mode 100644
index 28e6b6f..0000000
Binary files a/html/assets/blobfox-88x31.png and /dev/null differ
diff --git a/html/assets/chrmevil.gif b/html/assets/chrmevil.gif
deleted file mode 100644
index 791016f..0000000
Binary files a/html/assets/chrmevil.gif and /dev/null differ
diff --git a/html/assets/fediverse.gif b/html/assets/fediverse.gif
deleted file mode 100644
index 6ad64ff..0000000
Binary files a/html/assets/fediverse.gif and /dev/null differ
diff --git a/html/assets/firefoxnow.gif b/html/assets/firefoxnow.gif
deleted file mode 100644
index a4cd0bd..0000000
Binary files a/html/assets/firefoxnow.gif and /dev/null differ
diff --git a/html/assets/git_emblem.png b/html/assets/git_emblem.png
deleted file mode 100644
index 9b40c21..0000000
Binary files a/html/assets/git_emblem.png and /dev/null differ
diff --git a/html/assets/hash_now.gif b/html/assets/hash_now.gif
deleted file mode 100644
index 833ce8c..0000000
Binary files a/html/assets/hash_now.gif and /dev/null differ
diff --git a/html/assets/kode-mono-latin-400-normal.woff2 b/html/assets/kode-mono-latin-400-normal.woff2
new file mode 100644
index 0000000..e6cd383
Binary files /dev/null and b/html/assets/kode-mono-latin-400-normal.woff2 differ
diff --git a/html/assets/linux.gif b/html/assets/linux.gif
deleted file mode 100644
index ba8241c..0000000
Binary files a/html/assets/linux.gif and /dev/null differ
diff --git a/html/assets/lulu_tinyuniverses_wannachill.gif b/html/assets/lulu_tinyuniverses_wannachill.gif
deleted file mode 100644
index d71a17b..0000000
Binary files a/html/assets/lulu_tinyuniverses_wannachill.gif and /dev/null differ
diff --git a/html/assets/microsoft_stop.gif b/html/assets/microsoft_stop.gif
deleted file mode 100644
index 61936c7..0000000
Binary files a/html/assets/microsoft_stop.gif and /dev/null differ
diff --git a/html/assets/scottgames.gif b/html/assets/scottgames.gif
deleted file mode 100644
index be19371..0000000
Binary files a/html/assets/scottgames.gif and /dev/null differ
diff --git a/html/assets/wX6lP7 b/html/assets/wX6lP7
new file mode 100644
index 0000000..b22bf92
--- /dev/null
+++ b/html/assets/wX6lP7
@@ -0,0 +1 @@
+#### Recent blog entries ####
\ No newline at end of file
diff --git a/html/base.css b/html/base.css
new file mode 100644
index 0000000..48ae69b
--- /dev/null
+++ b/html/base.css
@@ -0,0 +1,80 @@
+:root {
+ --background-color: #2c2c2c;
+ --font-color: #cfcccc;
+ --nav-color: #bb8989;
+ --font-family: 'Kode Mono';
+}
+
+@font-face {
+ font-family: 'Kode Mono';
+ font-style: normal;
+ font-display: swap;
+ font-weight: 400;
+ src: url(assets/kode-mono-latin-400-normal.woff2) format('woff2');
+ unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
+}
+
+a, a:visited {
+ color: var(--nav-color);
+ margin: 0 .25em 0 .25em;
+}
+
+body {
+ background-color: var(--background-color);
+ color: var(--font-color);
+ font-family: var(--font-family);
+}
+
+.topbar {
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.navbar {
+ display: flex;
+ flex-direction: row;
+
+ p {
+ margin: 0;
+ }
+
+ a, a:visited {
+ text-decoration: none;
+ }
+
+ #current_nav {
+ text-decoration: underline;
+ }
+}
+
+.lefthead {
+ h3, p {
+ margin: 0;
+ }
+
+ p {
+ font-size: 10pt;
+ }
+}
+
+.footerbox {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+
+ p {
+ margin: 0;
+ font-size: 12pt;
+ }
+}
+
+#blinky {
+ animation: hide 750ms infinite;
+}
+
+@keyframes hide {
+ 0% { opacity: 1.0;}
+ 50% { opacity: 0.0;}
+}
\ No newline at end of file
diff --git a/html/blog.html b/html/blog.html
new file mode 100644
index 0000000..1c2a242
--- /dev/null
+++ b/html/blog.html
@@ -0,0 +1,43 @@
+
+
+
+ Liliesh's Homepage
+
+
+
+
+
+
+
+
+
+
+
Liliesh's Homepage!
+
I like to meow! :3
+
+
+
+
+
+ [liliesh@xenia homepage]$ cd entries
+ [liliesh@xenia entries]$ ls -lArt
+ total 0
+
+ [liliesh@xenia entries]$ exit_
+
+
+
+
\ No newline at end of file
diff --git a/html/general.css b/html/general.css
deleted file mode 100644
index 92f6007..0000000
--- a/html/general.css
+++ /dev/null
@@ -1,66 +0,0 @@
-:root {
- font-family: w95fa, sans-serif;
- --bg-color: #008080;
- --content-bg-color: #f0e9d0;
- --text-color: #000000;
- --window-bg-color: #b0aa9b;
- --light-shade: #ddd4c6;
- --dark-shade: #747064;
- --window-deco-color: #00007f;
- --seperator-color: #979285;
-}
-
-@font-face {
- font-family: w95fa;
- font-style: normal;
- font-weight: 400;
- src: url(https://fonts.cdnfonts.com/s/45697/W95FA.woff);
-}
-
-.title-bar {
- background-color: var(--window-deco-color);
- color: white;
- font-size: 14pt;
- padding: .25em;
- margin: 0;
-}
-
-.window {
- background-color: var(--window-bg-color);
- border: 3px solid;
- border-color: var(--light-shade) var(--dark-shade) var(--dark-shade)
- var(--light-shade);
- min-height: 5em;
- margin: 0.5em;
-}
-
-.button {
- border: 3px solid;
- border-color: var(--light-shade) var(--dark-shade) var(--dark-shade)
- var(--light-shade);
- padding: 5px;
-}
-
-.window-content {
- background-color: var(--content-bg-color);
- border: 3px solid;
- border-color: var(--dark-shade) var(--light-shade) var(--light-shade) var(--dark-shade);
- min-height: 5em;
- margin: 1em .5em;
-}
-
-.button:hover {
- background-color: var(--light-shade);
-}
-
-.vruler{
- border-left: 3px solid var(--seperator-color);
- height: 30px;
- margin: 0 5px 0 5px;
- align-self: center;
-}
-
-/*BODY*/
-body {
- background-color: var(--bg-color);
-}
diff --git a/html/index.html b/html/index.html
index c5ae74f..03e8146 100644
--- a/html/index.html
+++ b/html/index.html
@@ -1,74 +1,46 @@
+
-
-
+ Liliesh's Homepage
+
+
+
+
+
+
+
-
-
Welcome!
-
-
-
About Liliesh
-
silly neighborhood goofball
-
-
About Me
-
- Name: Maya
- Pronouns: she/her
-
-
-
Interests
-
-
-
- Reading & Fanfics
- >> currently a lot of webcomics (e.g Sabrina Online, Nine to Nine)
-
-
- Gaming
- >> mostly sandbox and story based
-
-
- Sysadministration
- >> mostly setting up services in my homelab and checking out new software
-
-
- Software development
- >> doing silly stuff or developing solutions that I need
-
-
-
-
+
+
+
Liliesh's Homepage!
+
I like to meow! :3
+
+
+
+ [liliesh@xenia homepage]$ cat assets/wX6lP7
+ #### Recent blog entries ####
+ [liliesh@xenia homepage]$ cd entries
+ [liliesh@xenia entries]$ ls -lArt | tail -n 7
+ total 0
+
+ [liliesh@xenia entries]$ exit_
+
-
-
-
+