flex/templates/search.html

23 lines
618 B
HTML
Raw Normal View History

{% if PLUGINS and 'tipue_search' in PLUGINS %}
2020-04-20 23:36:36 +02:00
{% extends 'base.html' %}
{% block title %}{{ _('Search') }} - {{ SITENAME|striptags }}{% endblock title %}
{% block content %}
<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 23:36:36 +02:00
{% endblock content %}
{% endif %}