summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/source/_templates/page.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/source/_templates/page.html b/docs/source/_templates/page.html
new file mode 100644
index 00000000..8862f15a
--- /dev/null
+++ b/docs/source/_templates/page.html
@@ -0,0 +1,14 @@
+{% extends '!page.html' %}
+{% block body %}
+<div class="admonition note">
+<p class="first admonition-title">Note</p>
+<p>You are viewing the documentation for an older version of boto (boto2).<p>
+<p class="last"><a class="reference external" href="https://github.com/boto/boto3">Boto3</a>, the next version of Boto, is now
+stable and recommended for general use. It can be used side-by-side with
+Boto in the same project, so it is easy to start using Boto3 in your existing
+projects as well as new projects. Going forward, API updates and all new
+feature work will be focused on Boto3.</p>
+<p>For more information, see the <a href="http://boto3.readthedocs.org/">documentation for boto3.</a></p>
+</div>
+{{ super() }}
+{% endblock %}