missing ul tags
This commit is contained in:
parent
320470d844
commit
0ec3a40a53
1 changed files with 6 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue