12 lines
361 B
HTML
12 lines
361 B
HTML
|
{% extends "en/base.html" %}
|
||
|
{% block title %} - {{ list_type }}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div id="list">
|
||
|
<h1>{{ list_type }} * {{ filename | prettyfilename }}</h1>
|
||
|
{% for value, word in list | sort(reverse=True) %}
|
||
|
<div><strong><a href="/en/?q={{ word}}">{{ word }}</a></strong> <sup>({{ value }})</sup></div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endblock %}
|