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 %}