-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathall.html
24 lines (21 loc) · 866 Bytes
/
all.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: null
noindex: true
---
{%- assign all_pages = "" | split: "" -%}
{%- for entry in site.modules -%}{%- assign all_pages = all_pages | push: entry -%}{%- endfor -%}
{%- for entry in site.sfx -%}{%- assign all_pages = all_pages | push: entry -%}{%- endfor -%}
{%- for entry in site.gfx -%}{%- assign all_pages = all_pages | push: entry -%}{%- endfor -%}
{%- for entry in site.fonts -%}{%- assign all_pages = all_pages | push: entry -%}{%- endfor -%}
{%- assign entries_unfiltered = all_pages | sort: "priority", "last" -%}
{%- assign entries = all_pages | where_exp:"item","item.noindex != true" -%}
{% for entry in entries %}
!!!$PAGE$!!!{{ entry.url }}
<html>
<head><title>{{ entry.title_prefix }} {{ entry.title }}</title></head>
<body>
<h1>{{ entry.title_prefix }} {{ entry.title }}</h1>
{{ entry.content | markdownify }}
</body>
</html>
{% endfor %}