templates/explorer/collection-template-nfts.html.twig line 1
{% extends 'base.html.twig' %}
{% block title %}Collection{% endblock %}
{% block body %}
<div class="grid-container" style="min-height: 750px; margin-bottom: 100px;">
<div class="grid-x">
<div class="small-12 cell" style="text-align: center;">
<h1 style="margin-top: 75px;">NFT Collection</h1>
<h2>{{ nftCollection.name }} <span style="color: #999;">Series {{ nftCollection.series }}</span></h2>
</div>
<div class="small-12 cell">
{{ wo_render_breadcrumbs() }}
</div>
{% for nft in templateNfts %}
<div class="small-12 large-3 cell">
{% include 'explorer/includes/asset-card.html.twig' with { 'nftMetadata': nft, 'app': app } %}
</div>
{% endfor %}
</div>
</div>
{% endblock %}