jrnl/features/data/templates/sample.template
2019-10-19 21:43:26 +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 %}
`