diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2026-08-03 13:22:07 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2026-08-03 13:22:07 +0300 |
| commit | 23821211e03cd69cf87b2f264b48e0125fcac29d (patch) | |
| tree | 42bd1a9fd7a8922a5351aed16309331d431acf7a /templates_gmi/index.html | |
| parent | 72a42e0449a0cbbbc455b36af9f53fc293c73fdf (diff) | |
Add gemini protocol
Diffstat (limited to 'templates_gmi/index.html')
| -rw-r--r-- | templates_gmi/index.html | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/templates_gmi/index.html b/templates_gmi/index.html new file mode 100644 index 0000000..b9bca7e --- /dev/null +++ b/templates_gmi/index.html @@ -0,0 +1,51 @@ +{% 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_220.jpg My portrait + +I like keeping things simple and pragmatic. I'm a life-long learner, but I don't go chasing trends. +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") }}) +{% endfor %} + +The posts page is a listing of my posts. I post sporadically about various subjects and with varying levels of effort. +The linklog page contains a curated aggregation of bookmarks, saved blog posts and essays, books, series, papers or anything else that I feel like sharing or recommending, stored in Linkhut. +On the *now* page I write what's currently going on in my life. Stuff that some would write onto their social media page. +The *projects* page contains info about my hobby projects. + +=> https://ln.ht/~jant My Linkhut page + +## Contact + +Email (jan *at* jantuomi *dot* fi) +=> https://fi.linkedin.com/in/jantuomi LinkedIn (jantuomi) +=> https://dice.camp/@kal_jan Mastodon (dice.camp/@kal_jan) +=> https://kal-jan.itch.io/ itch.io (kal_jan) +=> https://github.com/jantuomi Github (jantuomi) + +## Webrings + +=> https://xn--sr8hvo.ws/previous IndieWeb Webring (← previous) +=> https://xn--sr8hvo.ws/next IndieWeb Webring (→ next) +=> https://fediring.net/previous?host=jan.systems Fediring (← previous) +=> https://fediring.net/next?host=jan.systems Fediring (→ next) + +[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 + +[2] This site is written using the Zola static site generator. At first, the site was automatically deployed after every Markdown edit, but nowadays I use a more traditional manual deploy mechanism. + +=> https://www.getzola.org Zola +=> /posts/deploying-the-garden Original Markdown edit based deployment + +{% endblock %} |
