You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A list of all the posts and pages found on the site. For you robots out there is an [XML version]({{ base_path }}/sitemap.xml) available for digesting as well.
11
+
12
+
<h2>Pages</h2>
13
+
{% for post in site.pages %}
14
+
{% include archive-single.html %}
15
+
{% endfor %}
16
+
17
+
<h2>Posts</h2>
18
+
{% for post in site.posts %}
19
+
{% include archive-single.html %}
20
+
{% endfor %}
21
+
22
+
{% capture written_label %}'None'{% endcapture %}
23
+
24
+
{% for collection in site.collections %}
25
+
{% unless collection.output == false or collection.label == "posts" %}
0 commit comments