mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
46 lines
1.2 KiB
HTML
Executable file
46 lines
1.2 KiB
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" %}
|
|
{% assign buttons = site.data.graphics-collection | where:"type","buttons" %}
|
|
|
|
<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>
|
|
|
|
<section class="section">
|
|
<div class="section__content">
|
|
<h2>{% t pages.graphics.dontaion-header %}</h2>
|
|
<div class="row">
|
|
{% for graphic in buttons %}
|
|
{% include graphics-tile.html %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</div>
|