25 lines
580 B
Markdown
25 lines
580 B
Markdown
---
|
|
title: All Content
|
|
sidebar: home_sidebar
|
|
permalink: pages.html
|
|
toc: false
|
|
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 %}
|