theshell.ch/site/_layouts/topic.html

22 lines
446 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.category and item.layout != "topic" %}
<li class="list-commands"><a href="{{ item.url }}">{{ item.title }}</a></li>
{% endif %}
{% endfor %}
</ol>
</div>
</article>