templates/explorer/collection-template-nfts.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Collection{% endblock %}
  3. {% block body %}
  4.     <div class="grid-container" style="min-height: 750px; margin-bottom: 100px;">
  5.         <div class="grid-x">
  6.             <div class="small-12 cell" style="text-align: center;">
  7.                 <h1 style="margin-top: 75px;">NFT Collection</h1>
  8.                 <h2>{{ nftCollection.name }} <span style="color: #999;">Series {{ nftCollection.series }}</span></h2>
  9.             </div>
  10.             <div class="small-12 cell">
  11.                 {{ wo_render_breadcrumbs() }}
  12.             </div>
  13.             {% for nft in templateNfts %}
  14.                 <div class="small-12 large-3 cell">
  15.                 {% include 'explorer/includes/asset-card.html.twig' with { 'nftMetadata': nft, 'app': app } %}
  16.                 </div>
  17.             {% endfor %}
  18.         </div>
  19.     </div>
  20. {% endblock %}