1
0
mirror of https://github.com/privacyguides/privacyguides.org.git synced 2025-07-28 22:31:07 +00:00

feat!: Add videos section to website (#2861)

This commit is contained in:
2025-01-24 17:37:12 -06:00
parent d904114f81
commit c3e2dc65d8
18 changed files with 848 additions and 14 deletions

26
theme/video.html Normal file
View File

@@ -0,0 +1,26 @@
{% 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 %}