You've already forked wp-fedistream
19 lines
647 B
Twig
19 lines
647 B
Twig
|
|
{# Artists grid shortcode template #}
|
||
|
|
<div class="fedistream-shortcode fedistream-shortcode--artists">
|
||
|
|
{% if title %}
|
||
|
|
<h3 class="fedistream-shortcode__title">{{ title }}</h3>
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
{% if posts is not empty %}
|
||
|
|
<div class="fedistream-grid fedistream-grid--artists fedistream-grid--cols-{{ columns }}">
|
||
|
|
{% for post in posts %}
|
||
|
|
{% include 'partials/card-artist.twig' with { post: post } %}
|
||
|
|
{% endfor %}
|
||
|
|
</div>
|
||
|
|
{% else %}
|
||
|
|
<div class="fedistream-empty">
|
||
|
|
<p>{{ __('No artists found.', 'wp-fedistream') }}</p>
|
||
|
|
</div>
|
||
|
|
{% endif %}
|
||
|
|
</div>
|