grav-plugin-comments/admin/templates/partials/types.html.twig

18 lines
659 B
Twig

<div class="gpm gpm-themes">
<h1>
{{"PLUGIN_DATA_MANAGER.DATA_TYPES"|e|tu}}
</h1>
<div class="gpm gpm-themes themes card-row grid fixed-blocks pure-g">
{% for type, count in grav.twig.types %}
<a href="data-manager/{{ type }}" class="pure-u-1-3 card-item">
<div class="theme">
<div class="gpm-name">
{{ config.plugins['data-manager'].types[type].name|e ?: type|capitalize|e }}
</div>
<p>{{ count }} {{"PLUGIN_DATA_MANAGER.ITEMS"|e|tu}}</p>
</div>
</a>
{% endfor %}
</div>
</div>