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_list_index.twig.html

20 lines
335 B
HTML
Raw Normal View History

2019-02-20 08:04:55 -06:00
<table>
{% for id in posts %}
<tr>
<td>
<a href="{{ depth }}p/index.php?id={{ id }}">
{{ post[id]['title'] }}
</a>
</td>
<td>
<a href="{{ depth }}u/?id={{ post[id]['author'] }}">
{{ user[post[id]['author']]['full_name'] }}
</a>
</td>
<td>
{{ post[id]['date'] }}
</td>
</tr>
{% endfor %}
</table>