14 lines
246 B
HTML
14 lines
246 B
HTML
|
{% extends "layout/default.html" %}
|
||
|
|
||
|
{% block title %}Shadowfacts{% endblock %}
|
||
|
|
||
|
{% block content -%}
|
||
|
|
||
|
{% for post in posts %}
|
||
|
{% include "includes/article-listing.html" %}
|
||
|
{% endfor %}
|
||
|
|
||
|
{% include "includes/pagination.html" %}
|
||
|
|
||
|
{%- endblock %}
|