summaryrefslogtreecommitdiff
path: root/site/templates/datasets.html
blob: ba230eeee09b95dbdae6d5cc23a729ab167ce963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 %}