Sha256: 734eb01572968f8e7d0e71ff6b46ffdfe6b9772112356281025fa2dc7c3dcfaf
Contents?: true
Size: 858 Bytes
Versions: 16
Compression:
Stored size: 858 Bytes
Contents
{% if page.board %} <div class="content-block"> <h2>{{ page.boardName | default: "Předsednictvo" }}</h2> <ul class="unordered-list unordered-list--linked"> {% for chair in page.board %} {% if chair.uid %} {% assign person = site.people | where_exp: "item","item.uid contains chair.uid" | first %} <li> <span>{{ chair.position }}: <a class="content-block--nostyle font-bold" href="{{ person.url }}">{{ person.name }}</a></span> </li> {% else %} <li> <span>{{ chair.position }}: <strong>{{ chair.name }}</strong></span> </li> {% endif %} {% endfor %} </ul> {% if page.boardTurn %} <p>Konec mandátu: <a href="{{ page.boardTurn.electionUrl }}" style="text-decoration:underline"> {{ page.boardTurn.endDate }} </a></p> {% endif %} {% endif %}
Version data entries
16 entries across 16 versions & 2 rubygems