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

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