jrnl/features/data/templates/sample.template
2016-08-19 23:20:31 +00:00

19 lines
222 B
Text

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