2025-01-02 11:56:43 -05:00
{% extends "default" %}
2025-01-12 19:04:58 -05:00
{% block footer_vars %}
{% set footer_links = false %}
{% endblock %}
2025-01-02 11:56:43 -05:00
{% block content -%}
2025-01-12 19:04:58 -05:00
< h2 class = "headline" > About Me< / h2 >
< div class = "body-content" >
< p class = "about" >
Hi.
My day job is building software for people who pay me to build software.
In the evenings, I build software for people who don’ t pay me to build software (myself included).
I mostly write about building software on here.
That probably doesn’ t come as a shock.
< / p >
< / div >
< h2 class = "headline" >
Latest Post:
< a href = "{{ latest_post_permalink }}" >
{{ latest_post.metadata.title }}
< / a >
< / h2 >
< p class = "article-meta" >
Published on
< time itemprop = "datePublished" datetime = "{{ latest_post.metadata.date | iso_datetime }}" >
{{ latest_post.metadata.date | pretty_date }},
< / time >
in
{% for tag in latest_post.metadata.tags %}
< span itemprop = "articleSection" >
< a href = "/{{ tag.slug }}/" > {{ tag.name }}< / a > {% if loop.last %}.{% else %},{% endif %}
< / span >
{% endfor %}
2025-01-13 16:45:35 -05:00
< span title = "{{ latest_post.word_count }} word{% if latest_post.word_count != 1 %}s{% endif %}" >
2025-01-14 11:02:37 -05:00
{{ latest_post.word_count | reading_time }} minute read.
2025-01-13 16:45:35 -05:00
< / span >
2025-01-12 19:04:58 -05:00
< / p >
< div class = "body-content" >
{% if latest_post.excerpt %}
{{ latest_post.excerpt }}
< p >
< a href = "{{ latest_post_permalink }}" class = "read-more" > Read more…< / a >
< / p >
{% else %}
{{ latest_post_content }}
{% endif %}
< / div >
< h2 class = "headline" > Other Things< / h2 >
2025-01-02 11:56:43 -05:00
{%- endblock %}
2025-01-12 19:04:58 -05:00
{% block footer_links %}
{% set additional_links = [
"Book Log", "/books/",
"TV Commentary", "/tv/",
"Modding Tutorials", "/tutorials/",
] %}
{% endblock %}
{% block after_footer_links %}
2025-01-14 11:02:37 -05:00
< p >
< span class = "webring" >
< a href = "https://metro.bieszczady.pl" class = "no-external-link-decoration" > Metro Bieszczady Webring< / a >
< a title = "previous page in webring" href = "https://metro.bieszczady.pl/cgi-bin/webring?action=previous&from=shadowfacts" class = "no-external-link-decoration" > ←< / a >
< a title = "next page in webring" href = "https://metro.bieszczady.pl/cgi-bin/webring?action=next&from=shadowfacts" class = "no-external-link-decoration" > →< / a >
< / span >
2025-01-12 19:04:58 -05:00
< / p >
{% endblock %}