summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--content/projects/_index.md4
-rw-r--r--templates_gmi/index.html11
-rw-r--r--templates_gmi/macros.html7
-rw-r--r--templates_gmi/section_posts.html4
4 files changed, 11 insertions, 15 deletions
diff --git a/content/projects/_index.md b/content/projects/_index.md
index 592c762..538f58b 100644
--- a/content/projects/_index.md
+++ b/content/projects/_index.md
@@ -19,10 +19,6 @@ A dungeon synth / dark ambient duo project with Juuso.
An online cookbook of recipes I have prepared and enjoyed. Useful for me mostly.
-### [🌐 desmoctl](https://github.com/jantuomi/desmoctl)
-
-A CLI tool for communicating with a [Desmofylakas API](https://github.com/poksiala/desmo-api). A kind of a half-humorous attempt at creating something that is like a small Kubernetes but for BSD jails.
-
### [Diddle](diddle/)
A minimalist, performant, accessibility-focused Doodle alternative. See [post](/posts/diddle-event-scheduler).
diff --git a/templates_gmi/index.html b/templates_gmi/index.html
index 7db112f..9b7037f 100644
--- a/templates_gmi/index.html
+++ b/templates_gmi/index.html
@@ -1,6 +1,5 @@
{% extends "base.html" %}
{% block content %}
-
Hi! My name is Jan. I am a senior software engineer based in Finland. Welcome to my personal blog and digital garden¹.
=> /files/Jan_Tuomi_headshot.jpg My portrait
@@ -9,12 +8,10 @@ I like keeping things simple and pragmatic. I'm a life-long learner, but I don't
I enjoy spending time with my fiancée and our dog, tinkering with computer hardware and software, games of all kinds but mostly video-, tabletop and role-playing, electronics, music, language learning and linguistics.
I created this site² as a creative outlet for expressing myself and sharing my experiences.
-{% set posts = get_section(path="posts/_index.md") %}
-
## Latest posts
-
-{% for page in posts.pages | slice(end=3) %}
-=> {{ page.path }} {{ page.title }} ({{ page.date | date(format="%Y-%m-%d") }})
+{% set posts = get_section(path="posts/_index.md") %}
+{% for page in posts.pages | slice(end=3) -%}
+=> {{ page.path }} {{ page.date | date(format="%Y-%m-%d") }} {{ page.title }}
{% endfor %}
The posts page is a listing of my posts. I post sporadically about various subjects and with varying levels of effort.
@@ -39,6 +36,8 @@ Email (jan *at* jantuomi *dot* fi)
=> https://fediring.net/previous?host=jan.systems Fediring (← previous)
=> https://fediring.net/next?host=jan.systems Fediring (→ next)
+## Footnotes
+
[1] The phrase "digital garden" is a metaphor for thinking about writing and creating that focuses less on the resulting "showpiece" and more on the process, care, and craft it takes to get there. — Joel Hooks
=> https://joelhooks.com/digital-garden/ Joel Hooks
diff --git a/templates_gmi/macros.html b/templates_gmi/macros.html
index 2f95358..4609613 100644
--- a/templates_gmi/macros.html
+++ b/templates_gmi/macros.html
@@ -3,8 +3,8 @@
{% macro linklog(page) %}
{% set lh_data = load_data(path="linklog.json") %}
<!-- END_GEMINI_CONTENT -->
-{% for lh_post in lh_data.posts %}
-=> {{ lh_post.href }} {{ lh_post.description }} ({{ lh_post.time | date(format='%Y-%m-%d') }})
+{% for lh_post in lh_data.posts -%}
+=> {{ lh_post.href }} {{ lh_post.time | date(format='%Y-%m-%d') }} {{ lh_post.description }}
{% endfor %}
<!-- START_GEMINI_CONTENT -->
{% endmacro %}
@@ -12,7 +12,8 @@
{% macro page_h1(page) %}
# {{ page.title }}
-{% if page.date %}({{ page.date }}){% endif %}{% if page.extra.kind %} [{{ page.extra.kind }}]{% endif %}
+{% if page.date %}📅 {{ page.date }}{% endif %}
+{% if page.extra.kind %}🏷️ {{ page.extra.kind }}{% endif %}
{% endmacro %}
{% macro page_content(page) %}
diff --git a/templates_gmi/section_posts.html b/templates_gmi/section_posts.html
index af86c23..748c73c 100644
--- a/templates_gmi/section_posts.html
+++ b/templates_gmi/section_posts.html
@@ -6,6 +6,6 @@
=> /atom.xml Follow via Atom/RSS
=> https://aboutfeeds.com/ Huh?
-{% for page in posts.pages %}
-=> {{ page.path }} {{ page.title }} ({{ page.date | date(format="%Y-%m-%d") }})
+{% for page in posts.pages -%}
+=> {{ page.path }} {{ page.date | date(format="%Y-%m-%d") }} {{ page.title }}
{% endfor %} {% endblock %}