- don't declare show_title() in the base
diff --git a/doc/build/templates/site_base.mako b/doc/build/templates/site_base.mako
index 6090480..833293c 100644
--- a/doc/build/templates/site_base.mako
+++ b/doc/build/templates/site_base.mako
@@ -24,7 +24,8 @@
     <link href="/css/site_docs.css" rel="stylesheet" type="text/css"></link>
 <%text></%def></%text>
 
-<%text><%def name="title()"></%text><%block name="show_title"/> &mdash; ${docstitle|h}<%text></%def></%text>
+<%text><%def name="title()"></%text>${self.show_title()} &mdash; ${docstitle|h}<%text></%def></%text>
+
 
 <%!
     local_script_files = []
diff --git a/doc/build/templates/static_base.mako b/doc/build/templates/static_base.mako
index 23ebf0a..b3f7a52 100644
--- a/doc/build/templates/static_base.mako
+++ b/doc/build/templates/static_base.mako
@@ -5,7 +5,7 @@
     <head>
         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         ${metatags and metatags or ''}
-        <title><%block name="show_title"/> &mdash; ${docstitle|h}</title>
+        <title>${self.show_title()} &mdash; ${docstitle|h}</title>
         <%block name="headers"/>
     </head>
     <body>