From fce102283bab73ed08c292fce03e39c52f4a1fe2 Mon Sep 17 00:00:00 2001 From: Stuart Mackie Date: Tue, 29 Aug 2017 05:21:36 -0700 Subject: Added doc directories Change-Id: I671d7c3ad4f4e5e476c98f53780d867dc94b3089 Signed-off-by: Stuart Mackie --- docs/_templates/layout.html | 5 +++++ docs/_templates/my_custom_sidebar.html | 3 +++ docs/_templates/relations.html | 15 +++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 docs/_templates/layout.html create mode 100644 docs/_templates/my_custom_sidebar.html create mode 100644 docs/_templates/relations.html (limited to 'docs/_templates') diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html new file mode 100644 index 0000000..08baa3e --- /dev/null +++ b/docs/_templates/layout.html @@ -0,0 +1,5 @@ +{# Import the theme's layout. #} +{% extends "!layout.html" %} + +{# Custom CSS overrides #} +{% set bootswatch_css_custom = ['_static/my-styles.css'] %} \ No newline at end of file diff --git a/docs/_templates/my_custom_sidebar.html b/docs/_templates/my_custom_sidebar.html new file mode 100644 index 0000000..6b259bc --- /dev/null +++ b/docs/_templates/my_custom_sidebar.html @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/docs/_templates/relations.html b/docs/_templates/relations.html new file mode 100644 index 0000000..5bad0b5 --- /dev/null +++ b/docs/_templates/relations.html @@ -0,0 +1,15 @@ +
+
+ {% if prev %} + Prev Page + {% else %} + + {% endif %} + + {% if next %} + Next Page + {% else %} + + {% endif %} +
+
\ No newline at end of file -- cgit