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/u_index.twig.html
Jenga Phoenix a987549ce8 Who knows?
2019-03-05 08:33:32 -06:00

22 lines
637 B
HTML

<article class="user_info">
<h1 class="title">{{ user_full_name }}</h1>
<h3 class="author">{{ user_website }} &lt;{{ user_email }}&gt;</h3>
<h3>({{ user_name }} - {{ user_class }})</h3>
<div class="text">{{ user_bio }}</div>
</article>
<p>
{% if (logged_id == user_id) or (user[logged_id]['class'] == "archmage")
or (user[logged_id]['class'] == "wizard") %}
<a class="button" href="edit/?id={{ user_id }}">Edit profile</a>
<a class="button" href="oust/?id={{ user_id }}">Delete user</a>
{% endif %}
</p>
{% for post_id in user_posts %}
{% set post_id = post_id %}
{{ include ('meta_post_card_mini.twig.html') }}
{% endfor %}
</ul>