From 568553394d0a8b34668a75c9839a0f1f426469b2 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Sun, 6 Oct 2019 21:10:46 +0200 Subject: theme: Switch to docsy theme --- .../vendor/bootstrap/site/_layouts/default.html | 22 +++++++++++++ .../vendor/bootstrap/site/_layouts/docs.html | 34 +++++++++++++++++++ .../vendor/bootstrap/site/_layouts/examples.html | 16 +++++++++ .../vendor/bootstrap/site/_layouts/home.html | 16 +++++++++ .../vendor/bootstrap/site/_layouts/redirect.html | 38 ++++++++++++++++++++++ .../vendor/bootstrap/site/_layouts/simple.html | 12 +++++++ 6 files changed, 138 insertions(+) create mode 100644 themes/docsy/assets/vendor/bootstrap/site/_layouts/default.html create mode 100644 themes/docsy/assets/vendor/bootstrap/site/_layouts/docs.html create mode 100644 themes/docsy/assets/vendor/bootstrap/site/_layouts/examples.html create mode 100644 themes/docsy/assets/vendor/bootstrap/site/_layouts/home.html create mode 100644 themes/docsy/assets/vendor/bootstrap/site/_layouts/redirect.html create mode 100644 themes/docsy/assets/vendor/bootstrap/site/_layouts/simple.html (limited to 'themes/docsy/assets/vendor/bootstrap/site/_layouts') diff --git a/themes/docsy/assets/vendor/bootstrap/site/_layouts/default.html b/themes/docsy/assets/vendor/bootstrap/site/_layouts/default.html new file mode 100644 index 0000000..28f4cdc --- /dev/null +++ b/themes/docsy/assets/vendor/bootstrap/site/_layouts/default.html @@ -0,0 +1,22 @@ + + + + {% include header.html %} + + + {% include skippy.html %} + + {% include docs-navbar.html %} + + {% if page.layout == "simple" or page.layout == "examples" %} + {{ content }} + {% else %} +
+ {{ content }} +
+ {% endif %} + + {% include footer.html %} + {% include scripts.html %} + + diff --git a/themes/docsy/assets/vendor/bootstrap/site/_layouts/docs.html b/themes/docsy/assets/vendor/bootstrap/site/_layouts/docs.html new file mode 100644 index 0000000..1d21255 --- /dev/null +++ b/themes/docsy/assets/vendor/bootstrap/site/_layouts/docs.html @@ -0,0 +1,34 @@ + + + + {% include header.html %} + + + {% include skippy.html %} + + {% include docs-navbar.html %} + +
+
+
+ {% include docs-sidebar.html %} +
+ + {% if page.toc %} +
+ {{ content | toc_only }} +
+ {% endif %} + +
+

{{ page.title | smartify }}

+

{{ page.description | smartify }}

+ {% include ads.html %} + {{ content }} +
+
+
+ + {% include scripts.html %} + + diff --git a/themes/docsy/assets/vendor/bootstrap/site/_layouts/examples.html b/themes/docsy/assets/vendor/bootstrap/site/_layouts/examples.html new file mode 100644 index 0000000..1f8fbcd --- /dev/null +++ b/themes/docsy/assets/vendor/bootstrap/site/_layouts/examples.html @@ -0,0 +1,16 @@ +--- +layout: default +--- + +
+
+

{{ page.title | smartify }}

+

{{ page.description | smartify }}

+ Download source code +
+ {% include ads.html %} +
+ +
+ {{ content }} +
diff --git a/themes/docsy/assets/vendor/bootstrap/site/_layouts/home.html b/themes/docsy/assets/vendor/bootstrap/site/_layouts/home.html new file mode 100644 index 0000000..88a23d4 --- /dev/null +++ b/themes/docsy/assets/vendor/bootstrap/site/_layouts/home.html @@ -0,0 +1,16 @@ + + + + {% include header.html %} + + + {% include skippy.html %} + + {% include docs-navbar.html %} + + {{ content }} + + {% include footer.html %} + {% include scripts.html %} + + diff --git a/themes/docsy/assets/vendor/bootstrap/site/_layouts/redirect.html b/themes/docsy/assets/vendor/bootstrap/site/_layouts/redirect.html new file mode 100644 index 0000000..a30e77b --- /dev/null +++ b/themes/docsy/assets/vendor/bootstrap/site/_layouts/redirect.html @@ -0,0 +1,38 @@ + + + + + + Bootstrap ยท Content moved + + + + + + + +

Redirecting…

+ Click here if you are not redirected + + diff --git a/themes/docsy/assets/vendor/bootstrap/site/_layouts/simple.html b/themes/docsy/assets/vendor/bootstrap/site/_layouts/simple.html new file mode 100644 index 0000000..dfd9afd --- /dev/null +++ b/themes/docsy/assets/vendor/bootstrap/site/_layouts/simple.html @@ -0,0 +1,12 @@ +--- +layout: default +--- + +
+
+

{{ page.title | smartify }}

+

{{ page.description | smartify }}

+ {% include ads.html %} + {{ content }} +
+
-- cgit v1.2.3