templates/explorer/index.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}NFT Collections{% endblock %}
  3. {% block body %}
  4. <div class="grid-container" style="min-height: 750px;">
  5.     <div class="grid-x grid-padding-x grid-padding-y">
  6.         <div class="small-12 cell" style="text-align: center;">
  7.             <h1 style="margin-top: 75px;">Explorer</h1>
  8.         </div>
  9.         <div class="small-12 cell">
  10.             {{ wo_render_breadcrumbs() }}
  11.         </div>
  12.         {% for nftCollection in nftCollections %}
  13.         <div class="small-12 large-2 cell">
  14.             <a href="{{ path('explorer_collection_templates', { nftCollectionId: nftCollection.id }) }}">
  15.                 <img style="border-radius: 10px;" src="{{ aws_s3_base_url }}{{ asset(nftCollection.imageUrl) }}" alt="{{ nftCollection.name }} Series {{ nftCollection.series }}" />
  16.                 <p style="text-align: center;">{{ nftCollection.name }} Series {{ nftCollection.series }}</p>
  17.             </a>
  18. {#            <p style="text-align: center; font-size: .9em; font-weight: bold; padding: 5px;"><em>{{ nftCollection.nftMetadatas|length|number_format }} NFTs</em></p>#}
  19.         </div>
  20.         {% endfor %}
  21.     </div>
  22. </div>
  23. {% endblock %}