summaryrefslogtreecommitdiffstats
path: root/docs/templates
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2015-08-15 13:03:30 -0700
committerDavid Tolnay <dtolnay@gmail.com>2015-08-15 13:03:33 -0700
commit6d2f917a3a13048970f3bc2b84b5af4318774a3b (patch)
treeb7a75a135231b88a6e61eaa12ae681ca0d0cadef /docs/templates
parent8f55d6d4ab5f659984db276a7f64cabd60fe6528 (diff)
Move footer content into template
This caused problems because liquid >=3.0.0 does not allow a variable and a template with the same name. Here we had a variable and a template both called footer.
Diffstat (limited to 'docs/templates')
-rw-r--r--docs/templates/shared/_footer.liquid3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/templates/shared/_footer.liquid b/docs/templates/shared/_footer.liquid
index e2814a80..9c5c9fd1 100644
--- a/docs/templates/shared/_footer.liquid
+++ b/docs/templates/shared/_footer.liquid
@@ -1,6 +1,7 @@
<footer>
<div class="container">
- {{ footer | markdownify }}
+ <p>This website is made with <a href="http://www.tinytree.info">Bonsai</a> and <a href="http://getbootstrap.com">Bootstrap</a>, themed with <a href="https://bootswatch.com">Bootswatch</a>.</p>
+ <p>jq is licensed under the MIT license (code) and the <a href="https://creativecommons.org/licenses/by/3.0/">CC-BY-3.0</a> license (docs).</p>
</div>
</footer>