29 lines
541 B
HTML
29 lines
541 B
HTML
---
|
|
title: Page List
|
|
layout: null
|
|
hide: true
|
|
permalink: /:collection/index.html
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% include header.html %}
|
|
<link rel="stylesheet" href="/css/pageindex.css" />
|
|
<title>Pages</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Page List</h1>
|
|
|
|
<ul>
|
|
{% for page in site.pages %} {% if page.hide != true %} {% if page.title
|
|
!= "Page List"%}
|
|
<li>
|
|
<a href="{{ page.url }}">{{ page.title }}</a>
|
|
</li>
|
|
{% endif %} {% endif %} {% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|