blob: 38238056a2198807934f8c26f9886ae213083e95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "template.html.j2" %}
{% block content %}
<aside>
<h4>{{datetime}}</h4>
{% if contents_html != "" %}
<h4>contents:</h4>
<div id="contents">
{{ contents_html|safe }}
</div>
{% endif %}
<h4>this category:</h4>
<ul>
<li><b><a href="{{'/thoughts#'+category.replace(' ', '_')}}">{{category}}</a></b></li>
</ul>
</aside>
{{ md_html|safe }}
{% endblock %}
|