portfolio/templates/home/technologies.html.twig

27 lines
909 B
Twig
Raw Normal View History

2022-06-21 10:33:35 +00:00
<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>