diff options
| author | soaos <soaos@soaos.dev> | 2025-11-24 05:53:12 -0500 |
|---|---|---|
| committer | soaos <soaos@soaos.dev> | 2025-11-24 05:53:12 -0500 |
| commit | 4830ee8b52859155455a9a46c22f7bf9698141c2 (patch) | |
| tree | 129f70b89da84197e232b8e748e395eced2d47f4 /templates | |
| parent | a5b6bd2ba02786c4539beb4a64d3a6a64ef7dbfc (diff) | |
added about me page
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/about.html | 10 | ||||
| -rw-r--r-- | templates/base.html | 7 | ||||
| -rw-r--r-- | templates/index.html | 5 | ||||
| -rw-r--r-- | templates/shortcodes/age.html | 1 |
4 files changed, 21 insertions, 2 deletions
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" /></a> </li> + <li> + <a href="https://indieweb.org" target="_blank" + ><img + src="/assets/badges/indieweb.png" + alt="Work on this site released under CC0" + /></a> + </li> </ul> </div> <div class="status-bar"> 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")}} <p> 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='<span class="flip" data-title="Soaos"><span class="hidden-selectable">Soaos</span></span> 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 |
