mirror of
https://github.com/avitex/avitex.github.io
synced 2024-11-16 09:29:57 +00:00
46 lines
1.4 KiB
HTML
46 lines
1.4 KiB
HTML
{% extends "content.html" %}
|
|
{% import "post_macros.html" as post_macros %}
|
|
|
|
{% block content %}
|
|
<article itemscope itemtype="http://schema.org/BlogPosting">
|
|
<header class="article-header">
|
|
<span class="mono info">{{ post_macros::meta(page=page) }}</span>
|
|
<h1 itemprop="name headline">{{ page.title }}</h1>
|
|
</header>
|
|
<div itemprop="articleBody">
|
|
{{ page.content | safe }}
|
|
</div>
|
|
{% block page_footer %}
|
|
<footer>
|
|
<hr>
|
|
<p class="info muted mono">
|
|
{% if config.extra.author %}
|
|
Published by {{ config.extra.author }}
|
|
{% endif %}
|
|
{% if page.taxonomies | get(key="blog/categories") %}
|
|
{% set categories = page.taxonomies | get(key="blog/categories") %}
|
|
in <a href="{{ get_taxonomy_url(kind="blog/categories", name=categories[0]) }}">{{ categories[0] }}</a>
|
|
{% endif %}
|
|
{% set tags = page.taxonomies | get(key="blog/tags") %}
|
|
{% if tags %}
|
|
and tagged
|
|
{% for tag in tags %}
|
|
<a href="{{ get_taxonomy_url(kind="blog/tags", name=tag) }}">{{ tag }}</a>
|
|
{% if tags | length > 1 %}
|
|
{% if loop.index != tags | length %}
|
|
{% if loop.index == tags | length - 1 %}
|
|
and
|
|
{% else %}
|
|
,
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
</p>
|
|
</footer>
|
|
{% endblock page_footer %}
|
|
</article>
|
|
{% endblock content %}
|
|
|