pelican-papyrus/templates/partials/interests.html

35 lines
1.0 KiB
HTML
Raw Permalink Normal View History

2024-08-14 20:42:10 +02:00
{% set interests = page.resume.interests %}
{% if interests %}
<section class="section" id="interests-section">
2024-08-14 20:42:10 +02:00
<header>
<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 %}
{% 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 %}