summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Saryerwinnie <js@jamesls.com>2015-12-23 14:30:03 -0800
committerJames Saryerwinnie <js@jamesls.com>2015-12-30 13:01:56 -0800
commit7cd21f14f3d078388e22076b4fd7abbb4d717cfb (patch)
treea6eb693088865091ca9b84d8941fd451acdcc726
parent5f1603b1dd2cfc0466cdf0bafa568fe567772bff (diff)
downloadboto-warnings-docs.tar.gz
Add note about boto3 on all pages of boto docswarnings-docs
-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 %}