1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-08-19 09:24:46 +00:00
Files
privacyguides.org/theme/video.html

33 lines
716 B
HTML

<!--
SPDX-FileCopyrightText: 2025 Jonah Aragon <jonah@privacyguides.org>
SPDX-License-Identifier: MIT OR CC-BY-SA-4.0
-->
{% 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 %}