Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit bbf8f094 authored by escuriola's avatar escuriola
Browse files

OEL-455: Display links in sections.

parent ee0ace93
No related branches found
No related tags found
1 merge request!10OEL-455 [oe_whitelabel] footer
<h2> {{ contact_eu_title| t }} </h2>
{{ contact_eu_links }}
<ul>
{% for contact_link in contact_eu_links %}
<li>{{ pattern('link', {
'label': contact_link['link']['label'],
'path': contact_link['link']['path'].uri,
}) }}</li>
</ul>
{% endfor %}
<h2> {{ social_media_title|t }} </h2>
{{ social_media_links }}
<h2> {{ legal_title|t }} </h2>
......@@ -8,7 +15,6 @@
<li>{{ pattern('link', {
'label': legal_link['link']['label'],
'path': legal_link['link']['path'],
'icon_position': legal_link['link']['icon_position']
}) }}</li>
{% endfor %}
</ul>
<h2> {{ contact_title| t }} {{ project_name }} </h2>
<p> {{ description }} </p>
<a href="{{ contact_path }}"> Link </a>
<h2> {{ follow_title| t }} </h2>
{{ dump(follow_links) }}
<ul>
{% for follow_link in follow_links %}
{% set _icon = follow_link['icon']['name'] | replace({'-negative': ''}) %}
<li>{{ pattern('link', {
'label': follow_link['link']['label'],
'path': follow_link['link']['path'],
'icon_position': follow_link['link']['icon_position']
'path': follow_link['link']['path'].uri,
'icon': [follow_link['icon']['name'] | replace({'-negative': ''})],
'icon_position': follow_link['link']['icon_position'],
}) }}</li>
{% endfor %}
</ul>
<h2> {{ optional_links_title| t }} </h2>
{{ optional_links_links }}
<ul>
{% for optional_link in optional_links_links %}
<li>{{ pattern('link', {
'label': optional_link['link']['label'],
'path': optional_link['link']['path'].uri,
}) }}</li>
{% endfor %}
</ul>
......@@ -36,12 +36,12 @@
'project_name': site_specific_footer.site_identity,
'contact_path': url('<front>'),
'follow_title': 'Follow us on social media',
'follow_links': site_specific_footer.social_links,
'follow_links': ecl_footer_links(site_specific_footer.social_links),
},
{
'section_id': 'ec_footer_top_right',
'optional_links_title': 'Optional Links',
'optional_links_links': site_specific_footer.other_links,
'optional_links_links': ecl_footer_links(site_specific_footer.other_links['about_us']['links']),
},
] %}
{% set _bottom_sections = [
......@@ -53,7 +53,7 @@
{
'section_id': 'ec_footer_bottom_middle',
'contact_eu_title': 'Contact the EU',
'contact_eu_links': 'Contact EU LINKS',
'contact_eu_links': ecl_footer_links(site_specific_footer.other_links['contact_us']['links']),
'social_media_title': 'Social Media',
'social_media_link': 'Social Media LINKS',
'legal_title': 'Legal',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment