Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open Communication Guidelines #710

Merged
merged 2 commits into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading