aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3
diff options
context:
space:
mode:
authorAlex Boag-Munroe <alex.munroe@jupix.com>2019-02-03 20:33:08 +0000
committerAlex Boag-Munroe <alex.munroe@jupix.com>2019-02-03 20:33:08 +0000
commit6a93a9b5eaae1fe352b7b534a6b14a599343b7b9 (patch)
treef90cb64fa4a8d53438a2d9f3e211ab742f4a6854 /pelican-bootstrap3
parentdeccf69d77245ddfde3ffaf36a743bf00828b36f (diff)
downloadpelican-themes-6a93a9b5eaae1fe352b7b534a6b14a599343b7b9.tar.gz
Fix search.html template for Tipue 7.0
Diffstat (limited to 'pelican-bootstrap3')
-rw-r--r--pelican-bootstrap3/templates/search.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/pelican-bootstrap3/templates/search.html b/pelican-bootstrap3/templates/search.html
index ec49a40..be1c017 100644
--- a/pelican-bootstrap3/templates/search.html
+++ b/pelican-bootstrap3/templates/search.html
@@ -8,16 +8,15 @@
{% if 'assets' in PLUGINS %}
{% include 'includes/minify_tipuesearch.html' with context %}
{% else %}
+ <script src="{{ SITEURL }}/tipuesearch_content.js"></script>
<script type="text/javascript" src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/tipuesearch/tipuesearch_set.js"></script>
<script type="text/javascript" src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/tipuesearch/tipuesearch.min.js"></script>
{% endif %}
<script>
$(document).ready(function() {
$('#tipue_search_input').tipuesearch({
- 'mode' : 'json',
'show': 10,
- 'newWindow': false,
- 'contentLocation': 'tipuesearch_content.json'
+ 'newWindow': false
});
});
</script>