Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2017-05-29 20:52:13 +0300
committerMark Otto <markd.otto@gmail.com>2017-05-30 09:32:28 +0300
commit6ee35ced8650d65fbdbb5bbbe4575f53ae8fc801 (patch)
tree81f20097a7ce6a06a9ac6e35a6acce4cad38fabf /_layouts
parent5c704d77ca917c318fe500b4b6513089fe22fa53 (diff)
move scripts to separate include so we can include them across layouts even if the footer isn't there
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html1
-rw-r--r--_layouts/docs.html2
-rw-r--r--_layouts/home.html1
3 files changed, 4 insertions, 0 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index e3642ac6d1..d5e6b10b43 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -17,5 +17,6 @@
</main>
{% include footer.html %}
+ {% include scripts.html %}
</body>
</html>
diff --git a/_layouts/docs.html b/_layouts/docs.html
index 7bbb06b87d..26ba91aae7 100644
--- a/_layouts/docs.html
+++ b/_layouts/docs.html
@@ -31,5 +31,7 @@
{% endif %}
</div>
</div>
+
+ {% include scripts.html %}
</body>
</html>
diff --git a/_layouts/home.html b/_layouts/home.html
index 788ecf1dd5..64eabadb11 100644
--- a/_layouts/home.html
+++ b/_layouts/home.html
@@ -15,5 +15,6 @@
{{ content }}
{% include footer.html %}
+ {% include scripts.html %}
</body>
</html>