2020-04-20 16:42:24 +02:00
|
|
|
{% if 'tipue_search' in PLUGINS %} {% extends 'base.html' %} {% block title %} {{ _('Search') }} - {{ SITENAME|striptags }} {% endblock title %} {% block content %}
|
2020-02-07 18:06:17 +01:00
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('#tipue_search_input').tipuesearch({
|
|
|
|
'show': 10,
|
|
|
|
'mode': 'json',
|
|
|
|
'contentLocation': '{{ SITEURL }}/tipuesearch_content.js'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<article class="single">
|
|
|
|
<header>
|
|
|
|
<h1 id="categories">{{ _('Search Results') }}</h1>
|
|
|
|
</header>
|
|
|
|
<div id="tipue_search_content"></div>
|
|
|
|
</article>
|
|
|
|
|
2020-04-20 16:42:24 +02:00
|
|
|
{% endblock content %} {% endif %}
|