From e95f9f6875f4cbcae60fe96696eb83a6972bbf26 Mon Sep 17 00:00:00 2001 From: Ben Kaduk Date: Mon, 15 Oct 2012 14:39:15 -0400 Subject: Massive reST content rename All of rst_source/ is now just in doc/. The krb_ prefix is stripped from the document sub-directories. rst_tools are now just tools. The section headers of kadmind, krb5kdc, and sserver match as conflict markers. bigredbutton: whitespace ticket: 7409 --- doc/_templates/layout.html | 86 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 doc/_templates/layout.html (limited to 'doc/_templates/layout.html') diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html new file mode 100644 index 000000000..2cf03a18d --- /dev/null +++ b/doc/_templates/layout.html @@ -0,0 +1,86 @@ +{% extends "!layout.html" %} +{% set rellinks = [('search', 'Enter search criteria', 'C', 'Search')] + + rellinks + + [('index', 'Full Table of Contents', 'C', 'Contents')] %} +{% set css_files = css_files + ["_static/kerb.css"] %} + +{# Add a "feedback" button to the footer #} +{% macro feedback_rellinks() %} + +{%- endmacro %} + +{% block footer %} {{ feedback_rellinks() }}{% endblock %} + +{% block header %} +
+
+ {% if logo %} + + {% endif %} + {% block headertitle %} +

{{ shorttitle|e }}

+ {% endblock %} +
+ {%- for rellink in rellinks|reverse %} + {{ rellink[3] }} + {{ reldelim2 }} + {%- endfor %} + feedback +
+

+
+{% endblock %} + +{%- block content %} +
+
+ {%- block sidebar2 %} {%- endblock %} + {%- block sidebar1 %} + + {%- endblock %} +
+ {%- block document %}{{ super() }}{%- endblock %} +
+
+
+
+{% endblock %} -- cgit