Skip to content

Commit

Permalink
Open Communication Guidelines (#710)
Browse files Browse the repository at this point in the history
- added Open Communication Guidelines to the news footer
- corrected copyright date
  • Loading branch information
xentenza committed Apr 18, 2024
1 parent dddb84e commit d8a1207
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
15 changes: 12 additions & 3 deletions assets/components/organisms/footer/footer-legal.twig
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@
<a href="https://www.epfl.ch/about/overview/fr/reglements-et-directives/mentions-legales/">Accessibilité</a>
<a href="https://www.epfl.ch/about/overview/fr/reglements-et-directives/mentions-legales/">Mentions légales</a>
<a href="https://go.epfl.ch/protection-des-donnees/">Protection des données</a>
{% if isNews %}
<a href="https://go.epfl.ch/charte">Charte</a>
{% endif %}
</div>
<div>
<p>&copy; 2023 EPFL, tous droits réservés</p>
<p>&copy; 2024 EPFL, tous droits réservés</p>
</div>
</div>
{% endif %}
Expand All @@ -18,9 +21,12 @@
<a href="https://www.epfl.ch/about/overview/regulations-and-guidelines/disclaimer/">Accessibility</a>
<a href="https://www.epfl.ch/about/overview/regulations-and-guidelines/disclaimer/">Disclaimer</a>
<a href="https://go.epfl.ch/privacy-policy/">Privacy policy</a>
{% if isNews %}
<a href="https://go.epfl.ch/guidelines">Charter</a>
{% endif %}
</div>
<div>
<p>&copy; 2023 EPFL, all rights reserved</p>
<p>&copy; 2024 EPFL, all rights reserved</p>
</div>
</div>
{% endif %}
Expand All @@ -30,9 +36,12 @@
<a href="https://www.epfl.ch/about/overview/regulations-and-guidelines/disclaimer/">Zugänglichkeit</a>
<a href="https://www.epfl.ch/about/overview/regulations-and-guidelines/disclaimer/">Impressum</a>
<a href="https://go.epfl.ch/privacy-policy/">Datenschutzerklärung</a>
{% if isNews %}
<a href="https://go.epfl.ch/guidelines">Richtlinien</a>
{% endif %}
</div>
<div>
<p>&copy; 2023 EPFL, alle Rechte vorbehalten</p>
<p>&copy; 2024 EPFL, alle Rechte vorbehalten</p>
</div>
</div>
{% endif %}
13 changes: 13 additions & 0 deletions assets/components/pages/news-detail/news-detail.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{% set isSpecial = true %}
{% set isNews = true %}

{% extends "@templates/base/base.twig" %}

Expand Down Expand Up @@ -157,3 +158,15 @@

</div>
{% endblock %}

{% block footer_container %}
<div class="bg-gray-100 pt-5">
<div class="container">
{% block footer %}
{% include '@organisms/footer/footer-light.twig' %}
{% endblock %}
</div>
</div>
{% endblock %}
</div>
</div>
1 change: 1 addition & 0 deletions assets/components/pages/news-homepage/news-homepage.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{% set isSpecial = true %}
{% set isNews = true %}

{% extends "@templates/base/base.twig" %}

Expand Down

0 comments on commit d8a1207

Please sign in to comment.