2024-09-30 18:39:49 +00:00
|
|
|
<a class="small-button rss" href="{{ host }}/feed.xml">RSS</a>
|
2023-11-13 18:13:44 +00:00
|
|
|
|
|
|
|
{%- autoescape false -%}
|
2024-09-30 18:39:49 +00:00
|
|
|
{{ yocaml_body }}
|
2023-11-13 18:13:44 +00:00
|
|
|
{% endautoescape -%}
|
|
|
|
|
|
|
|
<h3>Essays and ramblings</h3>
|
|
|
|
|
|
|
|
<ol reversed class="list-articles">
|
|
|
|
{%- for article in articles -%}
|
|
|
|
<li>
|
|
|
|
<div class="side">
|
|
|
|
<a href="{{ article.author.link }}">
|
|
|
|
<img src="{{ article.author.avatar }}">
|
|
|
|
</a>
|
|
|
|
{%- for co_author in article.co_authors -%}
|
|
|
|
<a href="{{ coauthor.author.link }}">
|
|
|
|
<img src="{{ coauthor.author.avatar }}">
|
|
|
|
</a>
|
|
|
|
{%- endfor -%}
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
2024-09-30 18:39:49 +00:00
|
|
|
<span class="date">{{ article.date.human }}</span>
|
|
|
|
<a href="{{ host }}{{ article.url }}">{{ article.title }}</a><br />
|
|
|
|
<p>{{ article.description }}</p>
|
2023-11-13 18:13:44 +00:00
|
|
|
<div class="bottom">
|
|
|
|
<ul class="tags-list">
|
|
|
|
{%- for tag in article.tags -%}
|
2024-10-09 09:51:14 +00:00
|
|
|
<li><a href="{{ host }}/tags.html#tag-{{ tag }}">{{ tag }}</a></li>
|
2023-11-13 18:13:44 +00:00
|
|
|
{%- endfor -%}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{%- endfor -%}
|
|
|
|
</ol>
|