diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2014-01-11 02:12:40 -0800 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2014-01-11 02:12:40 -0800 |
| commit | 6f8daea724238dc74b221f640616ee6f596868a4 (patch) | |
| tree | 5870a4bd92572a2d72a3b926315ae497dd95fee3 /searx/templates/result_templates/torrent.html | |
| parent | 7b4ec5c5e9a89fc1bc3b3fc8dfad26450530a2da (diff) | |
| parent | b0a440421772c334b090f89187b747a350d31e5a (diff) | |
Merge pull request #18 from rsdy/master
highlight different search results differently
Diffstat (limited to 'searx/templates/result_templates/torrent.html')
| -rw-r--r-- | searx/templates/result_templates/torrent.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/searx/templates/result_templates/torrent.html b/searx/templates/result_templates/torrent.html new file mode 100644 index 000000000..4b7cfbf2a --- /dev/null +++ b/searx/templates/result_templates/torrent.html @@ -0,0 +1,7 @@ +<div class="result torrent_result"> + <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3> + <p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p> + <p class="stats">Seed: {{ result.seed }}, Leech: {{ result.leech }}</p> + <p><a href="{{ result.magnetlink }}" class="magnetlink">magnet link</a></p> + <p class="url">{{ result.pretty_url }}</p> +</div> |