added first data for graphic page

This commit is contained in:
VitaliyTr 2017-01-25 16:54:01 +07:00
parent dd6790b207
commit a1e8deecc0
6 changed files with 57 additions and 21 deletions

19
_includes/graphics-tile.html Executable file
View file

@ -0,0 +1,19 @@
<div class="col-xs-12 col-md-3">
<div class="b-graphic-tile">
<div class="thumbnail">
<div class="logo-container">
<img src="/assets/img/graphics/{{ graphic.img-link }}"/>
</div>
<div class="caption">
<h4>{{ graphic.format }}</h4>
</div>
<div class="wallet-links-container">
{% for link in graphic.links %}
<div class="link">
<a href="/assets/img/graphics/{{link.url}}" target="_blank">{{link.label}} </a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>