From 5ca4fd6a48293b57c5b90cd5944455eef56062e3 Mon Sep 17 00:00:00 2001 From: Chris Fiege <chris@tinyhost.de> Date: Wed, 12 Jun 2019 22:50:54 +0200 Subject: [PATCH] template: Add page header to RST template Signed-off-by: Chris Fiege <chris@tinyhost.de> --- flamingo/theme/templates/page.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flamingo/theme/templates/page.html b/flamingo/theme/templates/page.html index 967efb8..0940d55 100644 --- a/flamingo/theme/templates/page.html +++ b/flamingo/theme/templates/page.html @@ -3,7 +3,9 @@ {% block content %} <div class="container" > - <h1>{{ content.content_title }}</h1> + <div class="page-header" > + <h1>{{ content.content_title }}</h1> + </div> {% if content.date is not none%} <p> <em>{{ content.date }}</em> -- GitLab