mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 13:49:40 +02:00
7 lines
131 B
Text
7 lines
131 B
Text
|
from pathlib import Path
|
||
|
|
||
|
CWD = Path(__file__).parent
|
||
|
|
||
|
{% for f in data.children %}
|
||
|
{{ f.var }} = CWD / "{{ f.path }}"
|
||
|
{% endfor %}
|