mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-12-14 00:23:04 +01:00
3de0e897be
#467 - Reduced and modified columns. #467 - Styling changes across all supported stylesheets. #467 - PPH now reflects last hour's posts count and has average in title. #467 - Removed precision, except for boards that have between 0~1 posts. #467 - Fixed issue where inline board tags pointed to the HTML file, rendering them nonfunctional for noJS users. Misc - Fixed quote color in certain stylesheets. Signed-off-by: 8n-tech <8n-tech@users.noreply.github.com>
14 lines
789 B
HTML
14 lines
789 B
HTML
{% for board in boards %}
|
|
<tr>
|
|
<!-- <td class="board-meta">{{ board.locale }}</td> -->
|
|
<td class="board-uri"><p class="board-cell">
|
|
<a href='/{{board['uri']}}/'>/{{board['uri']}}/</a>
|
|
{% if board['sfw'] %}<i class="fa fa-briefcase board-sfw" title="SFW"></i>{% endif %}
|
|
</p></td>
|
|
<td class="board-title"><p class="board-cell" title="Created {{board['time']}}">{{board['title']|e}}</p></td>
|
|
<td class="board-pph"><p class="board-cell">{{board['pph']}}</td>
|
|
<td class="board-unique"><p class="board-cell">{{board['active']}}</td>
|
|
<td class="board-tags"><p class="board-cell">{% for tag in board.tags %}<a class="tag-link" href="{{tag_query}}{{tag|e}}">{{tag|e}}</a>{% endfor %}</p></td>
|
|
<td class="board-max"><p class="board-cell">{{board['posts_total']}}</td>
|
|
</tr>
|
|
{% endfor %} |