18 lines
430 B
HTML
18 lines
430 B
HTML
{% 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 %} |