From 0329069061485907d008959a921c4ed2fdc22d89 Mon Sep 17 00:00:00 2001 From: Rico Hoppe Date: Fri, 10 May 2024 19:32:26 +0000 Subject: [PATCH] location: add ogp metadata to all pages * download, how-to-use, index, lookup Signed-off-by: Rico Hoppe --- src/templates/location/index.html | 17 ++++++++++++++++- src/templates/location/lookup.html | 19 +++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/src/templates/location/index.html b/src/templates/location/index.html index 4eb4a9c3..12bfff7b 100644 --- a/src/templates/location/index.html +++ b/src/templates/location/index.html @@ -1,7 +1,22 @@ {% extends "../base.html" %} {% block head %} - + + + + + + + + + + + + + + + + {% end block %} {% block title %}{{ _("Welcome to IPFire Location") }}{% end block %} diff --git a/src/templates/location/lookup.html b/src/templates/location/lookup.html index 0a1a5a47..631348b4 100644 --- a/src/templates/location/lookup.html +++ b/src/templates/location/lookup.html @@ -2,6 +2,25 @@ {% block title %}{{ _("Location of %s") % address }}{% end block %} +{% block head %} + + + + + + + + + + + + + + + + +{% end block %} + {% block container %}
-- 2.47.2