24ae3cfc7c
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@64 a672b425-5310-4d7a-af5c-997e18724b81
21 lines
446 B
HTML
21 lines
446 B
HTML
---
|
|
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>
|