Add technologies to coop layout

This commit is contained in:
James Mead 2017-07-01 16:30:13 +01:00
parent 24715cefb5
commit 3fa79b343e
1 changed files with 18 additions and 0 deletions

View File

@ -106,6 +106,24 @@
</div>
</section>
<!-- /Services -->
<!-- Technologies -->
<section>
<h4>Technologies</h4>
<div class="row small-up-3 medium-up-4 large-up-4 small-collapse">
{% for technology in page.technologies %}
{% assign t = site.technologies | where: "slug", technology | first %}
<div class="column">
<a href="{{ t.url | relative_url }}" class="technology-thumb">
<div class="technology-thumb-img float-center" style="background-image: url(/images/technologies/{{ t.slug }}.png)"></div>
<h5>{{ t.name }}</h5>
</a>
</div>
{% endfor %}
</div>
</section>
<!-- /Technologies -->
</div>
</div>
</div>