v6/site_test/index.html

73 lines
2.3 KiB
HTML

{% extends "default" %}
{% block footer_vars %}
{% set footer_links = false %}
{% endblock %}
{% block content -%}
<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&rsquo;t pay me to build software (myself included).
I mostly write about building software on here.
That probably doesn&rsquo;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 %}
<span title="{{ latest_post.word_count }} word{% if latest_post.word_count != 1 %}s{% endif %}">
{{ latest_post.word_count | reading_time }}&nbsp;minute&nbsp;read.
</span>
</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>
{%- endblock %}
{% block footer_links %}
{% set additional_links = [
"Book Log", "/books/",
"TV Commentary", "/tv/",
"Modding Tutorials", "/tutorials/",
] %}
{% endblock %}
{% block after_footer_links %}
<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&amp;from=shadowfacts" class="no-external-link-decoration"></a>
<a title="next page in webring" href="https://metro.bieszczady.pl/cgi-bin/webring?action=next&amp;from=shadowfacts" class="no-external-link-decoration"></a>
</span>
</p>
{% endblock %}