duckling/templates/partials/subprojects.html

17 lines
544 B
HTML

<div id="subproject-list">
{%- for page in section.pages %}
<article>
<a href="{{ page.permalink | safe }}"></a>
{%- 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>