home.html
HTML document, ASCII text
1
{% extends "default.html" %}
2
{% import "small-annotation-display.html" as annotation_display %}
3
4
{% block nav_title %}Home{% endblock %}
5
{% block title %}Home | {{ site_name }}{% endblock %}
6
{% block content %}
7
<x-frame style="--width: 768px">
8
<h1>{{ site_name }}</h1>
9
<p>
10
Free/libre/open image data for machine learning, computer vision, data science, research, and more.
11
</p>
12
<p>Some actions you can do:</p>
13
<ul>
14
<li><a href="/upload">Upload a picture (but you must log in first)</a></li>
15
<li><a href="/object/">List of objects</a></li>
16
<li><a href="/query-pictures">Query the dataset</a></li>
17
</ul>
18
<h2>Random pictures</h2>
19
<ul class="thumbnail-list">
20
{% for resource in resources %}
21
<li>
22
<a href="/picture/{{ resource.id }}">
23
{{ annotation_display.annotation_display(resource) }}
24
<div class="list-detail">
25
{{ resource.title }}
26
</div>
27
</a>
28
</li>
29
{% endfor %}
30
</ul>
31
</x-frame>
32
{% endblock %}