diff options
| author | Thomas LEBEAU <thomas.lebeau@g-nova.fr> | 2014-08-18 10:44:46 +0200 |
|---|---|---|
| committer | Thomas LEBEAU <thomas.lebeau@g-nova.fr> | 2014-08-18 10:45:05 +0200 |
| commit | a28cfd4887813ec4343516c57376574a3f6b7427 (patch) | |
| tree | 9f68f584bd9791bb02d43cf28ea01bf9aabec34b /searx/templates/courgette/result_templates/default.html | |
| parent | ce719ac50ca79cc423046ef7a32b8792a24dfe0b (diff) | |
[new] theme courgette
Diffstat (limited to 'searx/templates/courgette/result_templates/default.html')
| -rw-r--r-- | searx/templates/courgette/result_templates/default.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/searx/templates/courgette/result_templates/default.html b/searx/templates/courgette/result_templates/default.html new file mode 100644 index 000000000..734f9066c --- /dev/null +++ b/searx/templates/courgette/result_templates/default.html @@ -0,0 +1,13 @@ +<div class="result {{ result.class }}"> + + {% if result['favicon'] %} + <img width="14" height="14" class="favicon" src="static/{{theme}}/img/icon_{{result['favicon']}}.ico" /> + {% endif %} + + <div> + <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3> + {% if result.publishedDate %}<p class="published_date">{{ result.publishedDate }}</p>{% endif %} + <p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p> + <p class="url">{{ result.pretty_url }}</p> + </div> +</div> |