Use underline style for section titles

This commit is contained in:
TheThomaas 2025-06-09 10:19:48 +02:00
parent c10055dda6
commit 2abbdf84a4

View file

@ -1,6 +1,6 @@
<section id="{{ section.data.title | slug }}" class="{{ section.data.classes }} wrapper-full">
{% if section.data.showTitle != false %}
<h2>{% if section.data.displayedTitle %}{{ section.data.displayedTitle }}{% else %}{{ section.data.title }}{% endif %}</h2>
<h2 class="underline">{% if section.data.displayedTitle %}{{ section.data.displayedTitle }}{% else %}{{ section.data.title }}{% endif %}</h2>
{% endif %}
{{ section.templateContent }}
</section>