summaryrefslogtreecommitdiff
path: root/site/templates/blog.html
blob: b23b2f29cfdd510901f9f0253eca69dbfde544f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends 'layout.html' %}

{% block content %}
  <section>
    <h1>{{ metadata.title }}</h1>
    <div class='meta'>
      <div>
        <div class='gray'>Posted</div>
        <div>{{ metadata.date }}</div>
      </div>
      <div>
        <div class='gray'>By</div>
        <div>{{ metadata.author }}</div>
      </div>
      {% if metadata.datasets %}<div>
        <div class='gray'>Datasets</div>
        <div>{{ metadata.datasets }}</div>
      </div>{% endif %}
    </div>
  </section>
  {{ content }}
{% endblock %}