aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/search.html
diff options
context:
space:
mode:
Diffstat (limited to 'pelican-bootstrap3/templates/search.html')
-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>