forked from mattmakai/fullstackpython.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall.html
More file actions
13 lines (11 loc) · 348 Bytes
/
all.html
File metadata and controls
13 lines (11 loc) · 348 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}
{% block css %}<style>{% include "css/base.css" %}{% include "css/page-article.css" %}{% include "css/responsive.css" %}</style>{% endblock %}
{% block content %}
<div class="row">
<div class="c8">
{% for page in pages|sort(attribute='sortorder') %}
{{ page.content }}
{% endfor %}
</div>
</div>
{% endblock %}