From c8bbc25228a7d199ca6868db7375f1661c3ef6e4 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 23 Mar 2022 16:52:53 +0300 Subject: _includes: move everything to jekyll-theme/ --- _includes/common/footer.html | 72 -------------------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 _includes/common/footer.html (limited to '_includes/common/footer.html') diff --git a/_includes/common/footer.html b/_includes/common/footer.html deleted file mode 100644 index 9331784..0000000 --- a/_includes/common/footer.html +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - {% assign scripts = '' | split: '' %} - {% if site.settings.scripts %} - {% assign scripts = scripts | concat: site.settings.scripts %} - {% endif %} - {% if page.scripts %} - {% assign scripts = scripts | concat: page.scripts %} - {% endif %} - - {% for script in scripts %} - {% assign abs_check = script.src | downcase | split: '//' %} - {% if abs_check[0] == 'http:' or abs_check[0] == 'https:' or abs_check[0] == '' %} - {% assign url = script.src %} - {% else %} - {% assign abs_check = script.src | slice: 0 %} - {% if abs_check == '/' %} - {% assign url = script.src %} - {% else %} - {% assign url = script.src | relative_url %} - {% endif %} - {% endif %} - - {% endfor %} - - -- cgit v1.2.3