2017-08-28 11:20:57 +00:00
|
|
|
|
2017-08-31 13:48:44 +00:00
|
|
|
{% assign pages = site.pages | sort: 'sortkey' %}
|
|
|
|
{% for page in pages %}
|
2017-08-28 19:27:43 +00:00
|
|
|
{% if page.categories contains "crapaud" %}
|
2017-08-31 00:36:44 +00:00
|
|
|
<div class="crapaud">
|
|
|
|
<div class="name"><a href="{{ page.url }}">{{ page.title }}</a></div>
|
|
|
|
<div class="description">{{ page.description }}</div>
|
|
|
|
</div>
|
2017-08-28 11:20:57 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|