From 53ba59c39dab56533ec965bfdfc28bd98ab38db0 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 10 Mar 2023 18:11:06 +0000 Subject: initial commit --- blog/.html | 0 blog/state-of-the-site.html | 18 ++++++++++++++++++ blog/style.css | 7 +++++++ bloglist.html | 3 +++ genblog | 15 +++++++++++++++ index.html | 31 +++++++++++++++++++++++++++++++ pics/nocookie.gif | Bin 0 -> 581 bytes pics/profile.png | Bin 0 -> 196980 bytes style.css | 38 ++++++++++++++++++++++++++++++++++++++ 9 files changed, 112 insertions(+) create mode 100644 blog/.html create mode 100644 blog/state-of-the-site.html create mode 100644 blog/style.css create mode 100644 bloglist.html create mode 100755 genblog create mode 100644 index.html create mode 100644 pics/nocookie.gif create mode 100644 pics/profile.png create mode 100644 style.css diff --git a/blog/.html b/blog/.html new file mode 100644 index 0000000..e69de29 diff --git a/blog/state-of-the-site.html b/blog/state-of-the-site.html new file mode 100644 index 0000000..fd6ba69 --- /dev/null +++ b/blog/state-of-the-site.html @@ -0,0 +1,18 @@ +state of the site + + +

+Hello o/, and welcome to my website!
+As of right now I am still setting things up, I have a git server running but I am +still working on getting cloning to work via https. On top of the git server I also +have a cgit instance which I have gotten close to perfect (for some reason the site +is only sometimes in darkmode). +

+As of right now that is all I've got running but I might be setting up a SearXNG +instance soon. +

+However somethings that I will never put on my server are:
+ - social media frontend's eg: invious, and mastadon
+ - probably some other things that I can't think about right now
+

+ diff --git a/blog/style.css b/blog/style.css new file mode 100644 index 0000000..83ff097 --- /dev/null +++ b/blog/style.css @@ -0,0 +1,7 @@ +html { + background-color: #121212; + border: 3vh solid #121212; + font-family: sans-serif; + font-size: 2vh; + color: white; +} diff --git a/bloglist.html b/bloglist.html new file mode 100644 index 0000000..0004ac3 --- /dev/null +++ b/bloglist.html @@ -0,0 +1,3 @@ +

+2023 Mar 10 - state-of-the-site
+

diff --git a/genblog b/genblog new file mode 100755 index 0000000..0705892 --- /dev/null +++ b/genblog @@ -0,0 +1,15 @@ +#!/bin/sh + +blogs=$(ls -ct1 blog/*.html) +date() { + ls -ct1l --time-style=+'%Y %b %d' $1 | cut -d ' ' -f 6-8 +} +[ -f bloglist.html ] && rm bloglist.html +echo '

' >> bloglist.html +[ "$blogs" ] || echo "No blogs yet :)" >> bloglist.html + +for i in $blogs; do + name=$(echo $i | sed 's/blog\///' | sed 's/\..*//') + echo $(date $i)" - $name
" >> bloglist.html +done +echo '

' >> bloglist.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..29d133f --- /dev/null +++ b/index.html @@ -0,0 +1,31 @@ + + + + Squibid's Site + + + + + +
+
+

Squibid's
Website!

+
+
+
+

👋 Welcome

+

Hi my name is Squibid, and this is my website! + I will be using it for anything that I find + interesting along with some of my personal + projects and a blog.

+

🌐 Git Repos

+ git site + +
+ +
+ + diff --git a/pics/nocookie.gif b/pics/nocookie.gif new file mode 100644 index 0000000..c0dd092 Binary files /dev/null and b/pics/nocookie.gif differ diff --git a/pics/profile.png b/pics/profile.png new file mode 100644 index 0000000..b3f111c Binary files /dev/null and b/pics/profile.png differ diff --git a/style.css b/style.css new file mode 100644 index 0000000..d29f987 --- /dev/null +++ b/style.css @@ -0,0 +1,38 @@ +html, body { + background-color: #A9454A; + display: flex; + justify-content: center; +} +.master { + background-color: #141414; + border: 1vw solid #141414; + position: absolute; + width: 50%; + height: 100vh; +} +header { + text-align: center; + font-size: 1.7vw; +} +#profile { + vertical-align: middle; + margin: 10vw; +} +#font, p { + font-family: sans-serif; + color: white; +} +#link { + font-family: sans-serif; + color: white; +} +#left { + float: left; + text-align: left; + width: 50%; +} +#right { + float: right; + text-align: right; + width: 50%; +} -- cgit v1.2.1