diff options
author | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-10-05 15:29:21 +0200 |
---|---|---|
committer | Thomas Pointhuber <thomas.pointhuber@gmx.at> | 2014-10-05 15:46:43 +0200 |
commit | c36c935b03cc87ddfcac5ce3ded333be73387a7a (patch) | |
tree | 5c850f1f4520e5c0082cbdf8c63be48705aab645 /searx/templates/oscar/infobox.html | |
parent | 517e57b996aaeceda08afd0e80bfd30ad6192971 (diff) | |
download | searxng-c36c935b03cc87ddfcac5ce3ded333be73387a7a.tar.gz searxng-c36c935b03cc87ddfcac5ce3ded333be73387a7a.zip |
oscar template: add infobox
Diffstat (limited to 'searx/templates/oscar/infobox.html')
-rw-r--r-- | searx/templates/oscar/infobox.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/searx/templates/oscar/infobox.html b/searx/templates/oscar/infobox.html new file mode 100644 index 000000000..541da8ba7 --- /dev/null +++ b/searx/templates/oscar/infobox.html @@ -0,0 +1,28 @@ +<div class="panel panel-default infobox"> + <div class="panel-heading"> + <h4 class="panel-title">{{ infobox.infobox }}</h4> + </div> + <div class="panel-body"> + {% if infobox.img_src %}<img class="img-responsive center-block infobox_part" src="{{ infobox.img_src }}" />{% endif %} + {% if infobox.content %}<p class="infobox_part">{{ infobox.content }}</p>{% endif %} + + {% if infobox.attributes %} + <table class="table table-striped infobox_part"> + {% for attribute in infobox.attributes %} + <tr> + <td>{{ attribute.label }}</td> + <td>{{ attribute.value }}</td> + </tr> + {% endfor %} + </table> + {% endif %} + + {% if infobox.urls %} + <div class="infobox_part"> + {% for url in infobox.urls %} + <p class="btn btn-default btn-xs"><a href="{{ url.url }}">{{ url.title }}</a></p> + {% endfor %} + </div> + {% endif %} + </div> +</div> |