portfolio/templates/home/technologies.html.twig

29 lines
936 B
Twig
Raw Normal View History

<section id="technologies">
2022-06-21 10:33:35 +00:00
<div class="container">
<div class="section-title">
<h2 class="title-text">
{{ getLocalizedStr('technologies.title') }}
</h2>
2022-06-21 10:33:35 +00:00
</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>