Issue #3 list of pages (by name)

This commit is contained in:
Alexis Hassler
2019-05-05 18:46:56 +02:00
parent c4cf1d3670
commit a5d624dbca
5 changed files with 22 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
---
layout: default
title: All pages
menu: ['global']
---
{%- include /functions/wiki-pages.html -%}
<ul class="columns">
{%- for page in wiki_pages -%}
<li>
<a href="/{{ site.data.i18n[site.lang].prefix.tag }}{{ page.slug }}.html">{{ page.title }}</a>
{%- if page.author -%}&nbsp;(by <a href="/{{ site.data.i18n[site.lang].prefix.user }}{{ page.author }}.html">{{ page.author }}</a>) {%- endif -%}
</li>
{%- endfor -%}
</ul>