Files
myriad/myriad/templates/pages.html
2026-05-09 19:03:54 +01:00

17 lines
371 B
HTML

{% extends 'base.html' %}
{% block title %}{{ get_pages_name() }}{% endblock %}
{% block content %}
<div class="container">
{% if not pages %}
<i>There are no pages to show</i>
{% endif %}
{% for page in pages %}
<p><a href="{{ url_for('home.custom_page', pid=page[0]) }}">{{ page[1]|safe }}</a></p>
{% endfor %}
</div>
{% endblock %}