Archived
1
0
Disbranĉigi 0
Ĉi tiu deponejo arĥiviĝis je 2024-01-28. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
blagoblag/res/themes/default/html/p_index.twig.html
2019-02-23 01:15:14 -06:00

24 lines
684 B
HTML

<article>
<h1 class="title">{{ post_title }}</h1>
<h2 class="author">By
<a href="{{ depth }}{{ user_prefix_name}}{{ user[post_author]['name'] }}">
{{ user[post_author]['full_name'] }}
</a>
</h2>
<h3 class="date">{{ post_date }} - {{ post_id }}</h3>
{% set logged_class = user[logged_id]['class'] %}
{% if (post_author == logged_id) or (logged_class == "archmage")
or (logged_class == "wizard") %}
<p>
<a class="button" href="edit/?id={{ post_id }}">Edit post</a>
<a class="button" href="oust/?id={{ post_id }}">Delete post</a>
</p>
{% endif %}
<!-- ====================================================================== -->
<div class="text">{{ post_text }}</div>
</article>