arns-lt-gemini/templates/page.gmi

38 lines
903 B
Text
Raw Normal View History

{% import "macros.tpl" category_url, tag_url, text_url, logo, home %}
2023-06-29 21:25:40 +03:00
# {{ file.File.Description }}
2022-08-21 01:33:27 +03:00
{% for tag in file.File.Tags %}{{ tag_url(tag, 0) }}
2024-07-12 12:18:02 +03:00
{% endfor %}
2023-06-29 21:25:40 +03:00
2024-07-17 12:13:23 +03:00
```
Created: {{ file.File.Created}}
Copyright: {{ file.File.Copyright }}
Language: {{ file.File.Lang }}
```
2023-06-29 21:25:40 +03:00
{{ file.FormatContent()|safe }}
{{ category_url(file.File.CategoryPath, file.File.Category|last, 0) }}
2025-03-24 21:05:50 +02:00
### {{ T('mentions') }}
{% if mentions %}
{% for id, mention in mentions %}=> {{ mention}}
{% endfor %} {% endif %}
=> /mention/{{file.File.Id}} {{ T('newMention') }}
{{ home(lang) }}
2024-07-18 21:34:57 +03:00
```
Page counter: {{pageCounter}}
```
2025-03-24 21:05:50 +02:00
{% if admin and adminWaitingMentions %}
### Keravuotuojė sekcėjė
{% for id, mention in adminWaitingMentions %}
=> {{ mention }}
=> /admin/mentions/review/{{file.File.Id}}/{{id}} ✓ Patvėrtintė
=> /admin/mentions/remove/{{file.File.Id}}/{{id}} 🗙 Pašalintė
{% endfor %}
{% endif %}