summaryrefslogtreecommitdiffstats
path: root/pages.md
blob: 782d476ffa1468f9fb8d21e18225cd5c730eaa3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
title: All Content
sidebar: home_sidebar
permalink: pages.html
tags:
 - noindex
---

{% assign sorted_pages = (site.pages | sort: 'title') %}
{% assign ignore_tags = "noindex|how-to" | split: "|" %}

{% for page in sorted_pages %}
{% assign ignore = false %}
{% for tag in page.tags %}
{% if ignore_tags contains tag %}
{% assign ignore = true %}
{% endif %}
{% endfor %}
{% unless page.search == "exclude" or ignore == true or page.device %}
{% if page.title and page.url %}
- [{{page.title}}]({{ page.url | relative_url }})
{% endif %}
{% endunless %}
{% endfor %}