From cf3423a3ee07bc18237f8fb042cf4d4caafbfa8b Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Mon, 27 Nov 2017 13:40:07 -0500 Subject: [PATCH] link to the mitaka CLI guide Replace the use of the project_guides.tmpl template in the mitaka index file with inline versions that link to the mitaka-specific pages. Add a language-bindings.html page based on the one for ocata to link to the user-guide and cli-reference for mitaka. Add a projects.html page to link to the mitaka documentation for each service project. Change-Id: I173ecabeb3aa74a3d2ddc6b4ba898d881dcf752d Signed-off-by: Doug Hellmann --- www/mitaka/index.html | 8 ++++- www/mitaka/language-bindings.html | 54 +++++++++++++++++++++++++++++++ www/mitaka/projects.html | 51 +++++++++++++++++++++++++++++ 3 files changed, 112 insertions(+), 1 deletion(-) create mode 100644 www/mitaka/language-bindings.html create mode 100644 www/mitaka/projects.html diff --git a/www/mitaka/index.html b/www/mitaka/index.html index 4b490f5d68..3380f6d6c8 100644 --- a/www/mitaka/index.html +++ b/www/mitaka/index.html @@ -37,7 +37,13 @@
{% include 'templates/user_guides.tmpl' %} - {% include 'templates/project_guides.tmpl' %} + {% include 'templates/contributor_guides.tmpl' %} {% include 'templates/training_guides.tmpl' %}
diff --git a/www/mitaka/language-bindings.html b/www/mitaka/language-bindings.html new file mode 100644 index 0000000000..8410568072 --- /dev/null +++ b/www/mitaka/language-bindings.html @@ -0,0 +1,54 @@ +{% set projects = PROJECT_DATA[SERIES] %} +{% extends "templates/base.tmpl" %} +{% block pagetitle %}{{SERIES_TITLE}} Language bindings{% endblock %} +{% block title %} +Documentation > Language Bindings and Python Clients +{% endblock %} +{% block content %} + +
+
+
+
+

OpenStack {{SERIES_TITLE}} API Bindings

+

+ This page contains documentation about the Python + bindings provided by OpenStack and how to use them. +

+
+
+
+
+
+
+
+ +
+
+
+
+

Documentation treated like code, powered by the community - interested?

+ How To Contribute +
+
+
+
+ +{% endblock content %} diff --git a/www/mitaka/projects.html b/www/mitaka/projects.html new file mode 100644 index 0000000000..5fe3834036 --- /dev/null +++ b/www/mitaka/projects.html @@ -0,0 +1,51 @@ +{% set projects = PROJECT_DATA[SERIES] %} +{% extends "templates/base.tmpl" %} +{% block pagetitle %}{{SERIES_TITLE}} Services and Libraries{% endblock %} +{% block title %} +Documentation > Services and Libraries +{% endblock %} +{% block content %} + +
+
+
+
+

OpenStack {{SERIES_TITLE}} Projects

+

+ This page contains project-specific documentation for + OpenStack services and libraries. +

+
+
+
+
+
+
+
+
+
+
+
+ + + +
+
+
+
+

Documentation treated like code, powered by the community - interested?

+ How To Contribute +
+
+
+
+ +{% endblock content %}