summaryrefslogtreecommitdiffstats
path: root/askbot/templates/tags.html
blob: e2ab2c9323d362ed23143b580ebaa45cd67688b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "two_column_body.html" %}
<!-- tags.html -->
{% block title %}{% spaceless %}{% trans %}Tags{% endtrans %}{% endspaceless %}{% endblock %}
{% block content %}
{% include "tags/content.html" %}
{% endblock %}
{% block endjs %}
    <script type="text/javascript">
    /*<![CDATA[*/
        $().ready(function(){
            $("#ipSearchTag").focus();
            $("#type-tag").attr('checked',true);
            Hilite.exact = false;
            Hilite.elementid = "searchtags";
            Hilite.debug_referrer = location.href;
        });
        askbot['data']['tagSearchPromptText'] = "{% trans %}search for tags{% endtrans %}";
    /*]]>*/
    </script>
    {% include "tags/custom_javascript.httml" ignore missing %}
{% endblock %}
<!-- end tags.html -->