By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 article.html

View raw Download
text/plain • 604 B
ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
{{ document["title"] }}
4
{% endblock %}
5
{% block content %}
6
<h1>{{ document["title"] }}</h1>
7
<div id="article-date">{{ document.date | strftime("%Y-%m-%d, %H:%M:%S") }}</div>
8
{% if document["image"] %}
9
<figure>
10
<img src="{{ document['image'] }}" alt="{{ document['image-alt'] }}" id="article-image-header">
11
<figcaption>Pictured: {{ document["image-alt"] }}</figcaption>
12
</figure>
13
{% endif %}
14
<article class="content-area">
15
{{ document.content | markdown }}
16
</article>
17
{% endblock %}