blog/themes/solarized/templates/index.html

50 lines
1.4 KiB
HTML
Raw Normal View History

2022-11-03 02:55:14 +00:00
{% extends "base.html" %}
{% block content %}
<section id="content">
{% block content_title %}
<h1>All articles</h1>
2022-11-03 03:36:10 +00:00
<hr class="article-split">
2022-11-03 02:55:14 +00:00
{% endblock %}
<ul id="post-list">
{% for article in articles_page.object_list %}
<li>
<article class="hentry">
2022-11-03 15:22:57 +00:00
<header class="entry-title">
<div class="entry-list-flex-container">
<div class="entry-list-flex-child date">
<span class="small">
<time class="published" datetime="{{ article.date.isoformat() }}">
{{ article.date.isoformat().split("T")[0] }}
</time>
</span>
</div>
<div class="entry-list-flex-child">
<h2>
<div>
<span class="article-list-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span>
</div>
</h2>
<span class="small">
<span class="category">{{ article.category }}</span>
<span class="">
{% for tag in article.tags|sort %}
{{ tag }}
{% endfor %}</span>
</span>
2022-11-03 03:36:10 +00:00
</div>
2022-11-03 15:22:57 +00:00
</div>
2022-11-03 02:55:14 +00:00
</header>
</article>
</li>
{% endfor %}
</ul><!-- /#posts-list -->
{% if articles_page.has_other_pages() %}
{% include 'pagination.html' %}
{% endif %}
</section><!-- /#content -->
{% endblock content %}