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/html • 759 B
HTML document, 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") }}</div>
8
<p class="tags">
9
{% for tag in document["topics"] %}
10
<a href="/index/{{ tag }}.html" class="tag">{{ tag }}</a>
11
{% endfor %}
12
</p>
13
{% if document["image"] %}
14
<figure>
15
<img src="{{ document['image'] }}" alt="{{ document['image-alt'] }}" id="article-image-header">
16
<figcaption>Pictured: {{ document["image-alt"] }}</figcaption>
17
</figure>
18
{% endif %}
19
<article class="content-area">
20
{{ document.content | markdown }}
21
</article>
22
{% endblock %}