diff options
Diffstat (limited to 'site/templates')
| -rw-r--r-- | site/templates/datasets.html | 24 | ||||
| -rw-r--r-- | site/templates/home.html | 35 |
2 files changed, 58 insertions, 1 deletions
diff --git a/site/templates/datasets.html b/site/templates/datasets.html new file mode 100644 index 00000000..ba230eee --- /dev/null +++ b/site/templates/datasets.html @@ -0,0 +1,24 @@ +{% extends 'layout.html' %} + +{% block content %} + + {{ content }} + + <section> + <h2>Dataset Portraits</h2> + <p> + We have prepared detailed studies of some of the more noteworthy datasets. + </p> + + <div class="dataset-list"> + {% for dataset in datasets %} + <a href="{{ dataset.url }}"> + <div class="dataset"> + {{ dataset.title }} + </div> + </a> + {% endfor %} + </div> + </section> + +{% endblock %} diff --git a/site/templates/home.html b/site/templates/home.html index 59f8cf76..61062f28 100644 --- a/site/templates/home.html +++ b/site/templates/home.html @@ -21,7 +21,40 @@ </div> </div> - {{ content }} + <section class='wide'> + <h2>Facial Recognition Datasets</h2> + <div class='right-sidebar'> + <div class='meta'> + <div><div class='gray'>Found</div><div>275 datasets</div></div> + <div><div class='gray'>Created between</div><div>1993-2018</div></div> + <div><div class='gray'>Smallest dataset</div><div>20 images</div></div> + <div><div class='gray'>Largest dataset</div><div>10,000,000 images</div></div> + <div><div class='gray'>Highest resolution faces</div><div>450x500 (Unconstrained College Students)</div></div> + <div><div class='gray'>Lowest resolution faces</div><div>16x20 pixels (QMUL SurvFace)</div></div> + </div> + </div> + + <p>Regular Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> + <p>Regular Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> + <p>Regular Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> + </section> + + <section class='wide'> + <h2>Dataset Portraits</h2> + <p> + We have prepared detailed studies of some of the more noteworthy datasets. + </p> + + <div class="dataset-list"> + {% for dataset in datasets %} + <a href="{{ dataset.url }}"> + <div class="dataset"> + {{ dataset.title }} + </div> + </a> + {% endfor %} + </div> + </section> {% endblock %} |
