12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!-- Draw glyphicon icon from bootstrap-theme -->
- {% macro icon(action) -%}
- <span class="glyphicon glyphicon-{{ action }}"></span>
- {%- endmacro %}
- <!-- Draw favicon -->
- <!-- TODO: using url_for methode -->
- {% macro draw_favicon(favicon) -%}
- <img width="32" height="32" class="favicon" src="static/themes/oscar/img/icons/{{ favicon }}.png" alt="{{ favicon }}" />
- {%- endmacro %}
- <!-- Draw result header -->
- {% macro result_header(result, favicons) -%}
- <h4 class="result_header">{% if result.engine~".png" in favicons %}{{ draw_favicon(result.engine) }} {% endif %}<a href="{{ result.url }}">{{ result.title|safe }}</a></h4>
- {%- endmacro %}
- <!-- Draw result sub header -->
- {% macro result_sub_header(result) -%}
- {% if result.publishedDate %}<time class="text-muted" datetime="{{ result.pubdate }}" >{{ result.publishedDate }}</time>{% endif %}
- <small><a class="text-info" href="https://web.archive.org/web/{{ result.url }}">{{ icon('link') }} {{ _('cached') }}</a></small>
- {% if result.magnetlink %}<small> • <a href="{{ result.magnetlink }}" class="magnetlink">{{ icon('magnet') }} {{ _('magnet link') }}</a></small>{% endif %}
- {% if result.torrentfile %}<small> • <a href="{{ result.torrentfile }}" class="torrentfile">{{ icon('download-alt') }} {{ _('torrent file') }}</a></small>{% endif %}
- {%- endmacro %}
- <!-- Draw result footer -->
- {% macro result_footer(result) -%}
- <div class="clearfix"></div>
- <span class="label label-default pull-right">{{ result.engine }}</span>
- <p class="text-muted">{{ result.pretty_url }}</p>
- {%- endmacro %}
- <!-- Draw result footer -->
- {% macro result_footer_rtl(result) -%}
- <div class="clearfix"></div>
- <span class="label label-default pull-left">{{ result.engine }}</span>
- <p class="text-muted">{{ result.pretty_url }}</p>
- {%- endmacro %}
- {% macro preferences_item_header(info, label) -%}
- {% if not rtl %}
- <div class="row form-group">
- <label class="col-sm-3 col-md-2">{{ label }}</label>
- <div class="col-sm-4 col-md-4">
- {% else %}
- <div class="row form-group">
- <span class="col-sm-5 col-md-6 help-block">{{ info }}</span>
- <div class="col-sm-4 col-md-4">
- {% endif %}
- {%- endmacro %}
- {% macro preferences_item_footer(info, label) -%}
- {% if not rtl %}
- </div>
- <span class="col-sm-5 col-md-6 help-block">{{ info }}</span>
- </div>
- {% else %}
- </div>
- <label class="col-sm-3 col-md-2">{{ label }}</label>
- </div>
- {% endif %}
- {%- endmacro %}
|