Skip to content

Commit

Permalink
add some ids
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-gui committed Oct 18, 2024
1 parent e67cee6 commit b982df5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion templates/components/evangelists.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% if (title is defined and title) or (introduction is defined and introduction) %}
<div class="component--evangelists__text">
{% if (title is defined and title) %}
<h2 class="txt-earth">{{ title }}</h2>
<h2 class="txt-earth" id="contact">{{ title }}</h2>
{% endif %}
{% if (introduction is defined and introduction) %}
{{ introduction|raw }}
Expand Down
2 changes: 1 addition & 1 deletion templates/components/groups_list.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% if (list_title is defined and list_title) or (list_introduction is defined and list_introduction) %}
<div class="component--group-list__intro">
{% if (list_title is defined and list_title) %}
<h2>{{ list_title }}</h2>
<h2 id="groups">{{ list_title }}</h2>
{% endif %}
{% if (list_introduction is defined and list_introduction) %}
<p>{{ list_introduction }}</p>
Expand Down
4 changes: 2 additions & 2 deletions templates/components/recent-activities.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="l-center">
<div class="component component--columns component--columns--images">
{% if title is not empty %}
<h2 class="txt-earth">{{ title }}</h2>
<h2 class="txt-earth" id="activities">{{ title }}</h2>
{% endif %}
{% if introduction is not empty %}
<p>{{ introduction }}</p>
Expand All @@ -23,4 +23,4 @@
</ul>
</div>
</div>
</div>
</div>

0 comments on commit b982df5

Please sign in to comment.