blog.hatebit.org/theme/templates/archives.html

37 lines
1004 B
HTML
Raw Normal View History

{% 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 %}