27 lines
909 B
Twig
27 lines
909 B
Twig
|
<section>
|
||
|
<div class="container">
|
||
|
<div class="section-title">
|
||
|
<h2 class="title-text">Some of the technologies that I'm currently working with</h2>
|
||
|
</div>
|
||
|
<div class="tech-mosaic">
|
||
|
{% for tech in technologies %}
|
||
|
<div class="item" title="{{ tech.name }}">
|
||
|
<div class="item-inside">
|
||
|
<div class="item-bg">
|
||
|
<img
|
||
|
src="/imgs/technos/{{ tech.image }}"
|
||
|
class="{% if tech.height == 'stretch' %}img-stretch{% endif %}"
|
||
|
/>
|
||
|
<div class="img-overlay"></div>
|
||
|
</div>
|
||
|
<div class="item-content">
|
||
|
<div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|