Adding footer to the guide
Change-Id: If8d7df41faeb08eaafadfeba32c6915ba020df4c
diff --git a/_layouts/website/page.html b/_layouts/website/page.html
new file mode 100644
index 0000000..2a65019
--- /dev/null
+++ b/_layouts/website/page.html
@@ -0,0 +1,18 @@
+{% extends template.self %}
+
+{% block page %}
+ {{ super() }}
+ <footer>
+ <div>
+ <h5>Have questions?</h5>
+ <p>
+ Please reach out on the <a href="https://groups.google.com/a/opencord.org/forum/#!forum/cord-dev" target="_blank">mailing list</a>
+ or on <a href="https://slackin.opencord.org" target="_blank">slack</a>.
+ </p>
+ </div>
+ <div>
+ <h5>Do you think this guide can be improved?</h5>
+ <p>Great, <a href="https://guide.opencord.org/developer/contribute_to_the_docs.html">help us do that</a>!</p>
+ </div>
+ </footer>
+{% endblock %}
\ No newline at end of file
diff --git a/styles/website.css b/styles/website.css
index 0957a64..42ecd82 100644
--- a/styles/website.css
+++ b/styles/website.css
@@ -11,4 +11,11 @@
list-style: disc;
text-indent: -1.5em;
padding-left: 1.5em;
+}
+
+footer {
+ background: #f8f8f8;
+ border: 1px solid rgba(0, 0, 0, 0.07);
+ border-radius: 3px;
+ padding: 0 20px !important;
}
\ No newline at end of file