2019-01-15 21:28:58 +00:00
|
|
|
{% extends "base.j2.html" %}
|
2019-01-21 16:10:27 +00:00
|
|
|
|
2019-02-07 19:27:15 +00:00
|
|
|
{% block title %}{{ post.headline }} - {{ site.name }}{% endblock %}
|
2019-01-31 21:23:16 +00:00
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
{% block meta %}
|
2019-02-07 19:27:15 +00:00
|
|
|
<meta name="author" content="{{ site.author.name }} <{{ site.author.email }}>" />
|
|
|
|
<meta name="description" content="{{ post.description|e }}" />
|
2019-01-15 21:28:58 +00:00
|
|
|
<link rel="canonical" href="{{ post.url }}" />
|
|
|
|
{% for category, latest in elements %}
|
|
|
|
<link rel="alternate" type="application/rss+xml" title="{{ category.title }} RSS feed" href="{{ category.feed }}" />
|
|
|
|
<link rel="alternate" type="application/atom+xml" title="{{ category.title }} ATOM feed" href="{{ category.feed }}atom.xml" />
|
|
|
|
<link rel="feed" title="{{ category.title}} feed" href="{{ category.url }}" />
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
2019-01-21 16:10:27 +00:00
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
{% block content %}
|
2019-02-07 19:27:15 +00:00
|
|
|
<main class="h-feed hfeed">
|
2019-01-15 21:28:58 +00:00
|
|
|
<aside>
|
|
|
|
<div>
|
2019-02-07 19:27:15 +00:00
|
|
|
{{ post.text }}
|
2019-01-15 21:28:58 +00:00
|
|
|
</div>
|
|
|
|
</aside>
|
|
|
|
|
2019-02-07 19:27:15 +00:00
|
|
|
{% for category, post in posts %}
|
2019-01-15 21:28:58 +00:00
|
|
|
<section>
|
2019-02-07 19:27:15 +00:00
|
|
|
<h2>in:
|
2019-01-21 16:10:27 +00:00
|
|
|
<a href="{{ category.url }}/">
|
|
|
|
<svg width="16" height="16"><use xlink:href="#icon-{{ category.name }}" /></svg>
|
|
|
|
{{ category.name }}
|
|
|
|
</a>
|
|
|
|
</h2>
|
2019-02-07 19:27:15 +00:00
|
|
|
{% include 'meta-article.j2.html' %}
|
2019-01-15 21:28:58 +00:00
|
|
|
</section>
|
|
|
|
{% endfor %}
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|