mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-28 17:31:00 +01:00
2edebbf438
#467 - Now escapes HTML in the title. #467 - hashChange is now captured and assumed to be a tag. Comma dillimitation turns into multiple tags. Signed-off-by: 8n-tech <8n-tech@users.noreply.github.com>
14 lines
798 B
HTML
14 lines
798 B
HTML
{% for board in boards %}
|
|
<tr>
|
|
<td class="board-meta">{{ board.locale }}</td>
|
|
<td class="board-uri"><div class="board-cell">
|
|
<a href='/{{board['uri']}}/'>/{{board['uri']}}/</a>
|
|
{% if board['sfw'] %}<i class="fa fa-briefcase board-sfw" title="SFW"></i>{% endif %}
|
|
</div></td>
|
|
<td class="board-title"><div class="board-cell" title="Created {{board['time']}}">{{board['title']|e}}</div></td>
|
|
<td class="board-pph"><div class="board-cell">{{board['pph']}}</td>
|
|
<td class="board-max"><div class="board-cell">{{board['posts_total']}}</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 %}<a class="tag-link" href="{{tag_query}}{{tag|e}}">{{tag|e}}</a>{% endfor %}</div></td>
|
|
</tr>
|
|
{% endfor %} |