mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-01-23 14:52:11 +01:00
11 lines
876 B
HTML
11 lines
876 B
HTML
|
{% for board in boards %}
|
||
|
<tr>
|
||
|
<td class="board-meta">{{ board.img|raw }} {% if board['sfw'] %}<img src="/static/sfw.png" title="Safe for work">{% else %}<img src="/static/nsfw.png" title="Not safe for work">{% endif %}</td>
|
||
|
<td class="board-uri"><div class="board-list-wrapper uri"><a href='/{{board['uri']}}/'>/{{board['uri']}}/</a>{{lock|raw}}</div></td>
|
||
|
<td class="board-title"><div class="board-cell" title="Created {{board['time']}} ({{board['ago']}} ago)">{{ board['title'] }}</div></td>
|
||
|
<td class="board-pph"><div class="board-cell">{{board['pph']}}</td>
|
||
|
<td class="board-max"><div class="board-cell">{{board['posts']}}</td>
|
||
|
<td class="board-unique"><div class="board-cell">{{board['active']}}</td>
|
||
|
<td class="board-tags"><div class="board-cell">{% for tag in board.tags %}<span class="board-tag">{{ tag }}</span> {% endfor %}</div></td>
|
||
|
</tr>
|
||
|
{% endfor %}
|