From 590651fbda27dc71ba4beba9dc3d376fba662ec9 Mon Sep 17 00:00:00 2001 From: Daniel Petrov Date: Mon, 5 Aug 2019 09:16:37 +0200 Subject: [PATCH] Reorder scripts in footer (#522) --- _includes/footer-scripts.html | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/_includes/footer-scripts.html b/_includes/footer-scripts.html index 9515539..8b36e48 100644 --- a/_includes/footer-scripts.html +++ b/_includes/footer-scripts.html @@ -4,18 +4,6 @@ {% endfor %} {% endif %} -{% if page.ext-js %} - {% for js in page.ext-js %} - {% include ext-js.html js=js %} - {% endfor %} -{% endif %} - -{% if page.js %} - {% for js in page.js %} - - {% endfor %} -{% endif %} - {% if layout.common-js %} {% for js in layout.common-js %} @@ -30,3 +18,15 @@ {% endif %} {% endfor %} {% endif %} + +{% if page.ext-js %} + {% for js in page.ext-js %} + {% include ext-js.html js=js %} + {% endfor %} +{% endif %} + +{% if page.js %} + {% for js in page.js %} + + {% endfor %} +{% endif %}