blog.hatebit.org/theme/templates/archives.html
2025-01-22 17:25:01 +01:00

37 lines
1004 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "partials/_base.html" %}
{# Page title: #}
{% block title %}posts {{ SITENAME|lower }}{% endblock %}
{# Page metadata: #}
{% block meta %}
<meta name="description" content="" />
<link rel="canonical" href="{{ SITEURL }}/{{ ARCHIVES_SAVE_AS }}" />
{% endblock %}
{# OpenGraph metadata: #}
{% block opengraph %}
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ SITEURL }}/{{ ARCHIVES_SAVE_AS }}" />
<meta property="og:title" content="posts {{ SITENAME|lower }}" />
<meta property="og:image" content="" />
<meta property="og:description" content="" />
{% endblock %}
{# Page content: #}
{% block content %}
<h1>Posts</h1>
<ul class="post-list">
{% for article in dates %}
<li class="flex-col md:flex-row mb-4 md:mb-2">
<span class="date text-base md:text-lg">{{ article.locale_date }}</span>
<span class="title">
<a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
</span>
</li>
{% endfor %}
</ul>
{% endblock %}