test/_layouts/page.html

15 lines
516 B
HTML
Raw Normal View History

{% include header.html %}
2017-12-20 23:08:39 +01:00
<div class="medium-12 columns content-box">
<div class="whitebox">
2017-12-22 07:37:17 +01:00
<div class="lang-list">
{% assign translations = site.pages | where: "ref", page.ref | sort: 'lang' %}
{% for node in translations %}
<a href="{{ node.url }}">{{ site.langs[node.lang] | escape }}</a>
{% endfor %}
</div>
2017-12-20 23:08:39 +01:00
{{ content }}
</div>
</div>
{% include footer.html %}