aboutsummaryrefslogtreecommitdiffstats
path: root/web/templates/index.html
blob: dc286aaf8b7052271a366cb51f9d218ccd96d901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "layout.html" %}

{% block main %}
    <div id="image_container">
        <img id="page" src="{{page_number}}.jpg" usemap="#wordmap" />
    </div>
    <map name="wordmap">{% for id, coords in areas %}
        <area href="#" shape="rect" coords="{{coords}}" data-id="word-{{id}}" />{% end %}
    </map>
    <div id="text">
        {% raw words %}
    </div>
{% end %}