blog/themes/waterspill-en/templates/index.html

28 lines
1.0 KiB
HTML
Raw Normal View History

2023-07-20 19:34:24 +00:00
{% extends "base.html" %}
{% block content_title %}{% endblock %}
{% block content %}
2023-07-20 20:09:02 +00:00
{% if articles %}
{% for article in articles %}
{% if loop.index <= 3 %}
2023-07-20 19:34:24 +00:00
<div class="blogItem">
2023-07-20 20:09:02 +00:00
<h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
<h3>{{ article.locale_date }}</h3>
{{ article.content }}
<h3 class="blogMeta">{% if not SUPPRESS_ITEM_CATEGORIES %}Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>{% endif %} | {% if article.tags %} Tags: {% for tag in article.tags %} <span><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> {% if not loop.last %} / {% endif %} </span> {% endfor %}</h3>{% endif %}</div>
{% endif %}
{% endfor %}
<dl>
<h2>Archives of {{ SITENAME }}</h2>
{% for article in dates %}
{% if loop.index > 3 %}
<dt>{{ article.locale_date }}</dt>
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
{% endif %}
{% endfor %}
</dl>
2023-07-20 19:34:24 +00:00
{% endif %}
{% endblock content %}