32 lines
660 B
HTML
32 lines
660 B
HTML
{% extends "default" %}
|
|
|
|
{% block titlevariable %}
|
|
{% set title = "Modding Tutorials" %}
|
|
{% endblock %}
|
|
|
|
{% block content -%}
|
|
|
|
<h1 class="headline">Modding Tutorials</h1>
|
|
|
|
{% for series in entries %}
|
|
|
|
<h2 class="headline">
|
|
<a href="/tutorials/{{ series.slug }}/">
|
|
{{ series.name }}
|
|
</a>
|
|
</h2>
|
|
<p class="article-meta">
|
|
{{ series.post_count }}
|
|
post{% if series.post_count != 1 %}s{% endif %}.
|
|
{% if series.last_updated %}
|
|
Last updated on
|
|
<time datetime="{{ series.last_updated | iso_datetime }}">
|
|
{{ series.last_updated | pretty_date }}.
|
|
</time>
|
|
{% endif %}
|
|
</p>
|
|
|
|
{% endfor %}
|
|
|
|
{%- endblock %}
|