theshell.ch/site/_layouts/topic.html

22 lines
469 B
HTML
Raw Normal View History

---
layout: main
---
<article class="post">
<header class="post-header">
<h2 class="post-title">{{ page.title }}</h2>
</header>
<div class="post-content">
{{ content }}
<ol>
{% for item in site.pages %}
{% if item.category-page == page.category-page and item.layout != "topic" %}
<li class="list-commands"><a href="{{ item.url }}"><span>{{ item.title }}</span></a></li>
{% endif %}
{% endfor %}
</ol>
</div>
</article>