14 lines
359 B
HTML
14 lines
359 B
HTML
|
<article class="card">
|
||
|
<h2 class="title">
|
||
|
<a href="{{ depth }}p/index.php?id={{ post_id }}">
|
||
|
{{ post[post_id]['title'] }}
|
||
|
</a>
|
||
|
</h2>
|
||
|
{% set author = post[post_id]['author'] %}
|
||
|
<h3 class="date">{{ post[post_id]['date'] }}</h3>
|
||
|
<h4 class="author">
|
||
|
<a href="{{ depth }}u/index.php?id={{ author }}">
|
||
|
{{ user[author]['full_name'] }}
|
||
|
</a>
|
||
|
</h4>
|