From 531dff1faf56c415c6d414b395e0a8f456d71672 Mon Sep 17 00:00:00 2001 From: Rico Hoppe Date: Sat, 11 May 2024 14:05:05 +0000 Subject: [PATCH] users: add ogp metadata to pages Signed-off-by: Rico Hoppe --- src/templates/users/index.html | 19 +++++++++++++++++++ src/templates/users/show.html | 19 +++++++++++++++++++ src/templates/users/subscribe.html | 19 +++++++++++++++++++ src/templates/users/unsubscribe.html | 19 +++++++++++++++++++ 4 files changed, 76 insertions(+) diff --git a/src/templates/users/index.html b/src/templates/users/index.html index 499a1728..22efbefb 100644 --- a/src/templates/users/index.html +++ b/src/templates/users/index.html @@ -2,6 +2,25 @@ {% block title %}{{ _("Users") }}{% end block %} +{% block head %} + + + + + + + + + + + + + + + + +{% end block %} + {% block container %}
diff --git a/src/templates/users/show.html b/src/templates/users/show.html index 71ba2c73..84152a1e 100644 --- a/src/templates/users/show.html +++ b/src/templates/users/show.html @@ -2,6 +2,25 @@ {% block title %}{{ account }}{% end block %} +{% block head %} + + + + + + + + + + + + + + + + +{% end block %} + {% block container %} {% import phonenumbers %} diff --git a/src/templates/users/subscribe.html b/src/templates/users/subscribe.html index 06a5420a..58e97553 100644 --- a/src/templates/users/subscribe.html +++ b/src/templates/users/subscribe.html @@ -2,6 +2,25 @@ {% block title %}{{ _("Subscribe") }}{% end block %} +{% block head %} + + + + + + + + + + + + + + + + +{% end block %} + {% block container %}
diff --git a/src/templates/users/unsubscribe.html b/src/templates/users/unsubscribe.html index 631239a1..56b4f4bd 100644 --- a/src/templates/users/unsubscribe.html +++ b/src/templates/users/unsubscribe.html @@ -2,6 +2,25 @@ {% block title %}{{ _("Unsubscribe") }}{% end block %} +{% block head %} + + + + + + + + + + + + + + + + +{% end block %} + {% block container %}
-- 2.47.3