From 0160c74d13394c6666d84a1080d68a3ee48e6076 Mon Sep 17 00:00:00 2001 From: Tim Fechner <tim.fechner@hs-hannover.de> Date: Fri, 24 Feb 2017 13:48:10 +0100 Subject: [PATCH] Add links to imprint and privacy page you need to specify those two urls's to use the 'hero_nav.html' template': - 'imprint-page' - 'privacy-page' --- hshcdn/templates/hshcdn/layout/hero.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hshcdn/templates/hshcdn/layout/hero.html b/hshcdn/templates/hshcdn/layout/hero.html index 35d71de8..234b65a0 100644 --- a/hshcdn/templates/hshcdn/layout/hero.html +++ b/hshcdn/templates/hshcdn/layout/hero.html @@ -43,8 +43,8 @@ {% block footer %} <div class="is-hidden-touch is-clearfix"> <div class="is-pulled-left"> - <a href="#">Impressum</a> · - <a href="#">Datenschutz</a> + <a href="{% url 'imprint-page' %}">Impressum</a> · + <a href="{% url 'privacy-page' %}">Datenschutz</a> </div> <div class="is-pulled-right"> <p><b>Hochschule Hannover</b></p> @@ -56,8 +56,8 @@ <div class="is-hidden-desktop"> <div class="has-text-centered"> <p> - <a href="#">Impressum</a> · - <a href="#">Datenschutz</a> + <a href="{% url 'imprint-page' %}">Impressum</a> · + <a href="{% url 'privacy-page' %}">Datenschutz</a> </p> <hr> <p><b>Hochschule Hannover</b></p> -- GitLab