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.
20 lines
453 B
20 lines
453 B
6 years ago
|
{% extends "base.html" %}
|
||
|
{% block title %}{% endblock %}
|
||
|
|
||
|
{% block search %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>{{ document | prettyfilename }}</h1>
|
||
|
{% for sentence in mappings %}
|
||
|
<p class="sentence">
|
||
|
{% for word in sentence %}
|
||
|
<strong class="query" style="font-size:{{ 100 + word[1] }}%;"> <a href="/?q={{ word[0] }}">{{ word[0] }}</a> </strong>
|
||
|
{% endfor %}
|
||
|
</p>
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block suggestions %}
|
||
|
{% endblock %}
|