25 lines
780 B
HTML
25 lines
780 B
HTML
{% if include.tag %}
|
|
<div class="uk-section section-featured{% if include.background %} uk-section-{{include.background}}{% endif %}">
|
|
<div class="uk-container uk-container-small">
|
|
|
|
{% if include.title %}
|
|
<h2 class="uk-h2">{{ include.title }}</h2>
|
|
{% endif %}
|
|
|
|
{% if include.subtitle %}
|
|
<p class="uk-text-lead">{{ include.subtitle | escape }}</p>
|
|
{% endif %}
|
|
|
|
<ul class="uk-list uk-list-large uk-margin-medium-top">
|
|
{% for doc in site.docs %}
|
|
{% if doc.tags contains include.tag %}
|
|
<li><a class="uk-box-shadow-hover-small" href="{{ site.baseurl }}{{ doc.url }}">{{doc.title}}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|