17 lines
371 B
HTML
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 %} |