logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

videos.html (883B)


  1. <div class="result">
  2. {% if "icon_"~result.engine~".ico" in favicons %}
  3. <img width="14" height="14" class="favicon" src="{{ url_for('static', filename='img/icons/icon_'+result.engine+'.ico') }}" alt="{{result.engine}}" />
  4. {% endif %}
  5. <h3 class="result_title"><a href="{{ result.url }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}>{{ result.title|safe }}</a></h3>
  6. {% if result.publishedDate %}<span class="published_date">{{ result.publishedDate }}</span><br />{% endif %}
  7. <a href="{{ result.url }}" {% if results_on_new_tab %}target="_blank" rel="noopener noreferrer"{% else %}rel="noreferrer"{% endif %}><img width="400" src="{{ image_proxify(result.thumbnail) }}" title="{{ result.title|striptags }}" alt="{{ result.title|striptags }}"/></a>
  8. <p class="url">{{ result.pretty_url }}&lrm;</p>
  9. </div>