Files
.github
_data
_includes
_layouts
_sass
assets
docs
test
_data
_pages
404.md
archive-layout-with-content.md
category-archive.md
collection-archive.html
edge-case.md
lorem-ipsum.md
markup.md
page-a.md
page-archive.html
page-b.md
portfolio-archive.md
post-archive-feature-rows.html
recipes-archive.md
sample-page.md
search.md
sitemap.md
splash-page.md
tag-archive.md
terms.md
year-archive.md
_pets
_portfolio
_posts
_recipes
assets
Gemfile
_config.yml
index.html
.editorconfig
.gitattributes
.gitignore
.travis.yml
CHANGELOG.md
Gemfile
LICENSE
README.md
Rakefile
_config.yml
banner.js
index.html
minimal-mistakes-jekyll.gemspec
package-lock.json
package.json
screenshot-layouts.png
screenshot.png
staticman.yml
website/test/_pages/sitemap.md
2018-09-11 09:58:22 -04:00

995 B

layout, title, permalink, author_profile
layout title permalink author_profile
archive Sitemap /sitemap/ false

A list of all the posts and pages found on the site. For you robots out there is an [XML version]({{ '/sitemap.xml' | relative_url }}) available for digesting as well.

Pages

{% for post in site.pages %} {% include archive-single.html %} {% endfor %}

Posts

{% for post in site.posts %} {% include archive-single.html %} {% endfor %}

{% capture written_label %}'None'{% endcapture %}

{% for collection in site.collections %} {% unless collection.output == false or collection.label == "posts" %} {% capture label %}{{ collection.label }}{% endcapture %} {% if label != written_label %}

{{ label }}

{% capture written_label %}{{ label }}{% endcapture %} {% endif %} {% endunless %} {% for post in collection.docs %} {% unless collection.output == false or collection.label == "posts" %} {% include archive-single.html %} {% endunless %} {% endfor %} {% endfor %}