2025-11-05 17:32:17 +04:00
|
|
|
<section class="contact" id="contact">
|
2025-11-05 20:39:19 +04:00
|
|
|
<div class="section-container">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h2>{{ t.contact.title }}</h2>
|
2026-07-06 01:23:33 +04:00
|
|
|
<p class="contact-lede">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.contact.lede | safe }}
|
2025-11-05 20:39:19 +04:00
|
|
|
</p>
|
|
|
|
|
</div>
|
2025-11-05 17:32:17 +04:00
|
|
|
<div class="contact-grid">
|
2026-07-06 08:14:52 +04:00
|
|
|
{% for section in t.contact.sections %}
|
2025-11-05 17:32:17 +04:00
|
|
|
<div class="contact-card">
|
|
|
|
|
<h3>{{ section.title }}</h3>
|
|
|
|
|
<div class="contact-links">
|
|
|
|
|
{% for link in section.links %}
|
|
|
|
|
<a href="{{ link.url }}"{% if link.url.startsWith('http') %} target="_blank"{% endif %}>
|
|
|
|
|
{{ link.text }}
|
|
|
|
|
</a>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|