theshell.ch/site/_layouts/topic.html
britea 960730cc7b css-team: correct lists topics commands
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@79 a672b425-5310-4d7a-af5c-997e18724b81
2018-11-09 23:57:21 +00:00

22 lines
455 B
HTML

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