jrnl/jrnl/templates/sample.template
2019-09-29 08:27:27 -04:00

18 lines
220 B
Text

---
extension: txt
---
{% block journal %}
{% for entry in entries %}
{% include entry %}
{% endfor %}
{% endblock %}
{% block entry %}
{{ entry.title }}
{{ "-" * len(entry.title) }}
{{ entry.body }}
{% endblock %}