annotation tools for making the iterations publication (Manetta & Jara) - https://iterations.space/
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.
40 lines
936 B
40 lines
936 B
<!DOCTYPE html>
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Iterative Annotation Tools</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/stylesheet.css')}}">
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div id="tools-nav">
|
|
{% if tool is defined %}
|
|
<a href="/"><button>⭠</button></a>
|
|
{% else %}
|
|
{% block toolsnav %}
|
|
<a href="/"><button style="visibility: hidden;">⭠</button></a>
|
|
{% endblock %}
|
|
{% endif %}
|
|
{% if tools %}
|
|
{% for t in tools %}
|
|
{% if tool == t %}
|
|
<a href="/{{ t }}/"><button style="color:magenta;">{{ t }}</button></a>
|
|
{% else %}
|
|
<a href="/{{ t }}/"><button>{{ t }}</button></a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
</div>
|
|
<div id="tools-extra">
|
|
{% block toolsextra %}
|
|
{% endblock %}
|
|
</div>
|
|
<div id="main">
|
|
{% block page %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
{% block footer %}
|
|
{% endblock %}
|
|
</html>
|