missing ul tags

This commit is contained in:
Yuya Saito 2012-01-13 09:40:16 +09:00
parent 320470d844
commit 0ec3a40a53

View file

@ -6,16 +6,21 @@ group: example-page
---
<h2>All Pages</h2>
<ul>
{% assign pages_list = site.pages %}
{% include helpers/pages_list.html %}
</ul>
<h2>Pages in group: project</h2>
<ul>
{% assign pages_list = site.pages %}
{% assign group = 'project' %}
{% include helpers/pages_list.html %}
</ul>
<h2>Pages in group: example-page</h2>
<ul>
{% assign pages_list = site.pages %}
{% assign group = 'example-page' %}
{% include helpers/pages_list.html %}
</ul>