mirror of
https://github.com/privacyguides/privacyguides.org.git
synced 2025-02-06 02:05:35 -05:00
27 lines
588 B
HTML
27 lines
588 B
HTML
|
{% extends "main.html" %}
|
||
|
|
||
|
<!-- Page content -->
|
||
|
{% block container %}
|
||
|
<div class="md-content" data-md-component="content">
|
||
|
<div class="md-content__inner">
|
||
|
|
||
|
<!-- Header -->
|
||
|
<header class="md-typeset">
|
||
|
{{ page.content }}
|
||
|
</header>
|
||
|
|
||
|
<!-- Posts -->
|
||
|
{% for post in posts %}
|
||
|
{% include "partials/video.html" %}
|
||
|
{% endfor %}
|
||
|
|
||
|
<!-- Pagination -->
|
||
|
{% if pagination %}
|
||
|
{% block pagination %}
|
||
|
{% include "partials/pagination.html" %}
|
||
|
{% endblock %}
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|