dash-website/graphics/index.html

34 lines
846 B
HTML
Executable file

---
layout: default
title: pages.graphics.title
description: pages.graphics.description
---
{% include hero/graphics.html %}
{% assign logos = site.data.graphics-collection | where:"type","logo" %}
{% assign merchants = site.data.graphics-collection | where:"type","merchants" %}
<div class="page">
<section class="section">
<div class="section__content">
<h2>{% t pages.graphics.logos-header %}</h2>
<div class="row">
{% for graphic in logos %}
{% include graphics-tile.html %}
{% endfor %}
</div>
</div>
</section>
<section class="section">
<div class="section__content">
<h2>{% t pages.graphics.merchants-header %}</h2>
<div class="row">
{% for graphic in merchants %}
{% include graphics-tile.html %}
{% endfor %}
</div>
</div>
</section>
</div>