Skip to content

Commit 0ec3a40

Browse files
committed
missing ul tags
1 parent 320470d commit 0ec3a40

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Diff for: pages.html

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,21 @@
66
---
77

88
<h2>All Pages</h2>
9+
<ul>
910
{% assign pages_list = site.pages %}
1011
{% include helpers/pages_list.html %}
11-
12+
</ul>
1213

1314
<h2>Pages in group: project</h2>
15+
<ul>
1416
{% assign pages_list = site.pages %}
1517
{% assign group = 'project' %}
1618
{% include helpers/pages_list.html %}
19+
</ul>
1720

1821
<h2>Pages in group: example-page</h2>
22+
<ul>
1923
{% assign pages_list = site.pages %}
2024
{% assign group = 'example-page' %}
2125
{% include helpers/pages_list.html %}
26+
</ul>

0 commit comments

Comments
 (0)