-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpages.html
More file actions
29 lines (27 loc) · 729 Bytes
/
pages.html
File metadata and controls
29 lines (27 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: pagetail
title: Pages
header: Pages
group: navigation
---
{% include JB/setup %}
<h2>All Pages</h2>
<ul>
{% assign pages_list = site.pages %}
{% for node in pages_list %}
{% if group == null or group == node.group %}
{% if node.group == "hidden" %}
<!--- hidden {{ BASE_PATH }}{{node.url}}--->
{% elsif page.url == node.url %}
<li class="active"><a href="{{ BASE_PATH }}{{node.url}}" class="active">{{node.title}}</a></li>
{% else %}
<li><a href="{{ BASE_PATH }}{{node.url}}">{{node.title}}</a></li>
{% endif %}
{% endif %}
{% endfor %}
<li>
<a
href="https://www.mayerdan.com/ia_change/IA_Change_Process.pdf">Information
Architecture Change Slides</a>
</li>
</ul>