a flask exercise and search machine prototype
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
430 B

{% extends "base.html" %}
{% block title %}{% endblock %}
{% block txtlist %}
{% endblock %}
{% block results %}
<h1>ordered.all</h1>
<div id="results" class="ordered all">
<!-- {{results}} -->
{% for item in results %}
<span class="{{files[item[2]]}}">
<strong style="font-size:{{item[0] * 50000}}%;"><a href="{{ url_for('index')}}?q={{item[1]}}">{{item[1]}}</a></strong>
</span>
{% endfor %}
<hr>
</div>
{% endblock %}