36 lines
921 B
Text
36 lines
921 B
Text
{% import "macros.tpl" category_url, tag_url, text_url, logo, home %}
|
||
# {{ file.File.Description }}
|
||
|
||
{% for tag in file.File.Tags %}{{ tag_url(tag, 0) }}
|
||
{% endfor %}
|
||
|
||
```
|
||
Created: {{ file.File.Created}}
|
||
Copyright: {{ file.File.Copyright }}
|
||
Language: {{ file.File.Lang }}
|
||
```
|
||
|
||
{{ file.FormatContent()|safe }}
|
||
|
||
{{ category_url(file.File.CategoryPath, file.File.Category|last, 0) }}
|
||
|
||
{{ home(lang) }}
|
||
|
||
```
|
||
Page counter: {{pageCounter}}
|
||
```
|
||
|
||
### {{ T('mentions') }}
|
||
{% if mentions %}
|
||
{% for id, mention in mentions %}=> {{ mention}} 📢 {{mention}}
|
||
{% endfor %}{% endif %}=> /mention/{{file.File.Id}} ➕ {{ T('newMention') }}
|
||
|
||
{% 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 %}
|