arns-lt-gemini/templates/category.gmi
2024-07-17 12:30:49 +03:00

18 lines
670 B
Text

{% import "macros.tpl" category_url, tag_url, text_url, logo, home %}
# {{ path }}
{% if indexFile %}{{ indexFile.FormatContent()|safe }}
```
Created: {{ indexFile.File.Created}}
Copyright: {{ indexFile.File.Copyright }}
Language: {{ indexFile.File.Lang }}
```{% endif %}
{% for file in tree.RootFiles %}{% if file.Name != "index.md" %}{{ text_url(file) }}{% endif %}{% endfor %}
{% for cat, count in tree.Categories %}{{ category_url(tree.Path|add:"/"|add:cat, cat, count) }}
{% endfor %}
{% for tag, count in tree.Tags %}{{ tag_url(tag, count) }}
{% endfor %}
{% if tree.RootPath %}{{ category_url(tree.RootPath, tree.RootPath, 0) }}{% endif %}
{{ home(lang) }}