blob: 9310d850eaa55f312f85a35a508739f89c04c204 (
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 != "" %}
<h5>contents:</h5>
<div id="contents">
{{ contents_html|safe }}
</div>
{% endif %}
<h5>this category:</h5>
<ul>
<li><b><a href="{{'/thoughts#'+category.replace(' ', '_')}}">{{category}}</a></b></li>
</ul>
</aside>
{{ md_html|safe }}
{% endblock %}
|