From d72a56f37f59d0700d163b67d5af78fc545c91f7 Mon Sep 17 00:00:00 2001 From: Dougal Matthews Date: Fri, 31 Oct 2014 15:02:47 +0000 Subject: Move the docs theme out of the docs folder. --- docs/theme/404.html | 201 --------------------------------------------------- docs/theme/base.html | 160 ---------------------------------------- docs/theme/nav.html | 45 ------------ docs_theme/404.html | 201 +++++++++++++++++++++++++++++++++++++++++++++++++++ docs_theme/base.html | 160 ++++++++++++++++++++++++++++++++++++++++ docs_theme/nav.html | 45 ++++++++++++ mkdocs.yml | 2 +- 7 files changed, 407 insertions(+), 407 deletions(-) delete mode 100644 docs/theme/404.html delete mode 100644 docs/theme/base.html delete mode 100644 docs/theme/nav.html create mode 100644 docs_theme/404.html create mode 100644 docs_theme/base.html create mode 100644 docs_theme/nav.html diff --git a/docs/theme/404.html b/docs/theme/404.html deleted file mode 100644 index 864247e7..00000000 --- a/docs/theme/404.html +++ /dev/null @@ -1,201 +0,0 @@ - - - - - Django REST framework - 404 - Page not found - - - - - - - - - - - - - - - - - - - -
- - - -
-
- - - - -
-
-

404

-

Page not found

-

Try the homepage, or search the documentation.

-
-
-
-
- -
-
- - - - - - - - - - diff --git a/docs/theme/base.html b/docs/theme/base.html deleted file mode 100644 index 4ca6cd81..00000000 --- a/docs/theme/base.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - {{ page_title }} - - - - - - - - - - - - - - - - - - - {# TODO: This is a bit of a hack. We don't want to refer to the file specifically. #} - - -
- - {% include "nav.html" %} - -
-
- - - - -
- -
- -
- - -
-
- -
- {{ content }} -
-
-
-
- -
-
- - - - - - - - - - - diff --git a/docs/theme/nav.html b/docs/theme/nav.html deleted file mode 100644 index a7a72d68..00000000 --- a/docs/theme/nav.html +++ /dev/null @@ -1,45 +0,0 @@ - - diff --git a/docs_theme/404.html b/docs_theme/404.html new file mode 100644 index 00000000..864247e7 --- /dev/null +++ b/docs_theme/404.html @@ -0,0 +1,201 @@ + + + + + Django REST framework - 404 - Page not found + + + + + + + + + + + + + + + + + + + +
+ + + +
+
+ + + + +
+
+

404

+

Page not found

+

Try the homepage, or search the documentation.

+
+
+
+
+ +
+
+ + + + + + + + + + diff --git a/docs_theme/base.html b/docs_theme/base.html new file mode 100644 index 00000000..4ca6cd81 --- /dev/null +++ b/docs_theme/base.html @@ -0,0 +1,160 @@ + + + + + {{ page_title }} + + + + + + + + + + + + + + + + + + + {# TODO: This is a bit of a hack. We don't want to refer to the file specifically. #} + + +
+ + {% include "nav.html" %} + +
+
+ + + + +
+ +
+ +
+ + +
+
+ +
+ {{ content }} +
+
+
+
+ +
+
+ + + + + + + + + + + diff --git a/docs_theme/nav.html b/docs_theme/nav.html new file mode 100644 index 00000000..a7a72d68 --- /dev/null +++ b/docs_theme/nav.html @@ -0,0 +1,45 @@ + + diff --git a/mkdocs.yml b/mkdocs.yml index de4b9922..4e584009 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -52,6 +52,6 @@ pages: - ['topics/credits.md', ] site_dir: html -theme_dir: docs/theme +theme_dir: docs_theme copyright: Copyright © 2014, Tom Christie. google_analytics: ['UA-18852272-2', 'django-rest-framework.org'] -- cgit v1.2.3