mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
This is more inline with pytest standards Co-authored-by: Micah Jerome Ellison <micah.jerome.ellison@gmail.com>
19 lines
222 B
Text
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 %}
|
|
`
|