2024-08-14 20:42:10 +02:00
|
|
|
{% set interests = page.resume.interests %}
|
|
|
|
{% if interests %}
|
2024-08-15 05:40:03 +02:00
|
|
|
<section class="section" id="interests-section">
|
2024-08-14 20:42:10 +02:00
|
|
|
<header>
|
2024-08-15 21:18:07 +02:00
|
|
|
<h2 class='section-title' class='section-title'><i class='fa-solid fa-heart'></i>{% trans %}resume interest title{% endtrans %}</h2>
|
2024-08-14 20:42:10 +02:00
|
|
|
</header>
|
|
|
|
<section id="interests">
|
|
|
|
{% for interest in interests %}
|
|
|
|
<div class="item">
|
|
|
|
{% if interest.name %}
|
|
|
|
<h3 class="name">
|
|
|
|
{{ interest.name }}
|
|
|
|
</h3>
|
|
|
|
{% endif %}
|
2024-08-15 21:18:07 +02:00
|
|
|
{% if interest.description %}
|
|
|
|
<div class="description">
|
|
|
|
{{ interest.description }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2024-08-14 20:42:10 +02:00
|
|
|
{% if interest.keywords %}
|
|
|
|
<ul class="keywords">
|
|
|
|
{% for keyword in interest.keywords %}
|
|
|
|
<li>{{ keyword }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
{% if interest.summary %}
|
|
|
|
<div class="summary">{{ interest.summary | replace("\r\n", "<br>") | replace("\n", "<br>") | replace("\r", "<br>") }}</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
{% endif %}
|