Files
wp-fedistream/templates/shortcodes/releases-grid.twig

19 lines
655 B
Twig
Raw Normal View History

{# Latest releases grid shortcode template #}
<div class="fedistream-shortcode fedistream-shortcode--releases">
{% if title %}
<h3 class="fedistream-shortcode__title">{{ title }}</h3>
{% endif %}
{% if posts is not empty %}
<div class="fedistream-grid fedistream-grid--albums fedistream-grid--cols-{{ columns }}">
{% for post in posts %}
{% include 'partials/card-album.twig' with { post: post } %}
{% endfor %}
</div>
{% else %}
<div class="fedistream-empty">
<p>{{ __('No releases found.', 'wp-fedistream') }}</p>
</div>
{% endif %}
</div>