combo/combo/public/templates/combo/json-list-cell.html

13 lines
272 B
HTML

{% block cell-content %}
<div class="links-list">
{% if title %}<h2>{{title}}</h2>{% endif %}
{% include "combo/asset_picture_fragment.html" %}
{% for row in json.data %}
<ul>
<li><a href="{{row.url}}">{{row.text}}</a></li>
</ul>
{% endfor %}
</div>
</div>
{% endblock %}