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