duckling/templates/partials/subprojects.html

24 lines
686 B
HTML

<div id="subproject-list">
{%- for page in section.pages %}
<article>
<a href="{{ page.permalink | safe }}"></a>
{% if page.extra.badge %}
<span class="badge subproject-badge">
{{ page.extra.badge }}
</span>
{%- endif %}
{%- if page.extra.preview -%}
<img class="preview" src="{{ current_url ~ page.slug ~ "/" ~ page.extra.preview }}" {% if config.markdown.lazy_async_image %}decoding="async" loading="lazy"{% endif %} />
{%- endif -%}
<div id="subproject-info">
<h3>
{{ page.title }}
</h3>
{%- if page.description %}
{{ page.description | markdown | safe }}
{%- endif %}
</div>
</article>
{%- endfor %}
</div>