From 4830ee8b52859155455a9a46c22f7bf9698141c2 Mon Sep 17 00:00:00 2001 From: soaos Date: Mon, 24 Nov 2025 05:53:12 -0500 Subject: added about me page --- content/about.md | 8 ++++++++ templates/about.html | 10 ++++++++++ templates/base.html | 7 +++++++ templates/index.html | 5 +++-- templates/shortcodes/age.html | 1 + 5 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 content/about.md create mode 100644 templates/about.html create mode 100644 templates/shortcodes/age.html diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..f980cd7 --- /dev/null +++ b/content/about.md @@ -0,0 +1,8 @@ +--- +title: "about" +template: "about.html" +--- + +The darkness peeled back {{ age() }} years ago and I tumbled out, scared and confused. + + \ No newline at end of file diff --git a/templates/about.html b/templates/about.html new file mode 100644 index 0000000..613c944 --- /dev/null +++ b/templates/about.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} +{% import "macros.html" as macros %} +{% block content %} + +{% set soaos = macros::soaosed(text="soaos") | trim %} +{{ macros::window(title="🦌 About Me", close="..") }} +{{ page.content | safe }} +{{ macros::endwindow() }} + +{% endblock content %} \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 4efc89d..ce2c968 100644 --- a/templates/base.html +++ b/templates/base.html @@ -79,6 +79,13 @@ alt="Work on this site released under CC0" /> +
  • + Work on this site released under CC0 +
  • diff --git a/templates/index.html b/templates/index.html index 89c7279..90b8d75 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3,6 +3,7 @@ {% block content %} {% set soaos = macros::soaosed(text="soaos") | trim %} +{% set Soaos = macros::soaosed(text="Soaos") | trim %} {{macros::window(title="👤 Welcome to " ~ soaos ~ ".dev")}}

    I'm an "artist" and professional software developer. In my free time I mostly work on eccentric software projects which you can read about here. @@ -14,10 +15,10 @@ I'm an "artist" and professional software developer. In my free time I mostly wo {{ macros::subtree(name="🌲 Projects", open=true, url="/projects") }} {{ macros::treelink(text="🎭 Off Book", url="https://offbook.ca", wip=true, blank=true) }} {{ macros::endsubtree() }} - {{ macros::treelink(text="🦌 Things I Like", url="/things_i_like", wip=true, wip_tooltip="🦌 -honestly these things are redundant, everything is under construction") }} + {{ macros::treelink(text="🦌 About Me", url="/about", wip=true, wip_tooltip="🦌 -honestly these things are redundant, everything is under construction") }} {{ macros::endsubtree() }} -{{ macros::subtree(name='Soaos Services') }} +{{ macros::subtree(name=Soaos ~ ' Services') }} {{ macros::treelink(text="🌱 Git Repositories", url="https://git.soaos.dev", blank=true, wip=true) }} {{ macros::treelink(text="📺 Videos", url="https://tv.soaos.dev/c/soaosdev", blank=true) }} {{ macros::treelink(text="🗃 Web Archive", url="https://archive.soaos.dev", blank=true) }} diff --git a/templates/shortcodes/age.html b/templates/shortcodes/age.html new file mode 100644 index 0000000..8af71ec --- /dev/null +++ b/templates/shortcodes/age.html @@ -0,0 +1 @@ +{{ now() | date(format='%Y') | int - 2002 }} \ No newline at end of file -- cgit v1.2.3