From 271a603d49e869f8afe323cccf5b37fab9316862 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 22 Jul 2018 17:15:29 +0200 Subject: [PATCH] Add meta tags --- templates/base.html | 3 ++- templates/diario.html | 4 ++++ templates/game.html | 4 ++++ templates/profile.html | 4 ++++ templates/wiki.html | 5 +++++ 5 files changed, 19 insertions(+), 1 deletion(-) diff --git a/templates/base.html b/templates/base.html index 40da03f9..6c426248 100644 --- a/templates/base.html +++ b/templates/base.html @@ -3,8 +3,9 @@ - {% block pagetitle %}{% endblock %} - Royal Games + {% block prehead %}{% endblock %} + {% block pagetitle %}{% endblock %} - Royal Games {% block posthead %}{% endblock %} diff --git a/templates/diario.html b/templates/diario.html index 353dfed8..3499b710 100644 --- a/templates/diario.html +++ b/templates/diario.html @@ -1,5 +1,9 @@ {% extends 'base.html' %} +{% block prehead %} + +{% endblock %} + {% block pagetitle %} Diario {% endblock %} diff --git a/templates/game.html b/templates/game.html index ed482fb5..7a7854b1 100644 --- a/templates/game.html +++ b/templates/game.html @@ -1,5 +1,9 @@ {% extends 'base.html' %} +{% block prehead %} + +{% endblock %} + {% block pagetitle %} {{ game_name }} {% endblock %} diff --git a/templates/profile.html b/templates/profile.html index 20dfaf56..d6942219 100644 --- a/templates/profile.html +++ b/templates/profile.html @@ -1,5 +1,9 @@ {% extends 'base.html' %} +{% block prehead %} + +{% endblock %} + {% block pagetitle %} {{ ryg.username }} {% endblock %} diff --git a/templates/wiki.html b/templates/wiki.html index 98470444..38236a48 100644 --- a/templates/wiki.html +++ b/templates/wiki.html @@ -1,5 +1,10 @@ {% extends 'base.html' %} +{% block prehead %} + + +{% endblock %} + {% block pagetitle %} {{ key }} {% endblock %}