modularize post templates a little more
This commit is contained in:
3
templates/post/ip.html
Normal file
3
templates/post/ip.html
Normal file
@@ -0,0 +1,3 @@
|
||||
{% if post.mod and post.mod|hasPermission(config.mod.show_ip, board.uri) %}
|
||||
[<a class="ip-link" style="margin:0;" href="?/IP/{{ post.ip }}">{{ post.ip }}</a>]
|
||||
{% endif %}
|
16
templates/post/name.html
Normal file
16
templates/post/name.html
Normal file
@@ -0,0 +1,16 @@
|
||||
{% set capcode = post.capcode|capcode %}
|
||||
{% if post.email|length > 0 %}
|
||||
{# start email #}
|
||||
<a class="email" href="mailto:{{ post.email }}">
|
||||
{% endif %}
|
||||
<span {% if capcode.name %}style="{{ capcode.name }}" {% endif %}class="name">{{ post.name|bidi_cleanup }}</span>
|
||||
{% if post.trip|length > 0 %}
|
||||
<span {% if capcode.trip %}style="{{ capcode.trip }}" {% endif %}class="trip">{{ post.trip }}</span>
|
||||
{% endif %}
|
||||
{% if post.email|length > 0 %}
|
||||
{# end email #}
|
||||
</a>
|
||||
{% endif %}
|
||||
{% if capcode %}
|
||||
{{ capcode.cap }}
|
||||
{% endif %}
|
3
templates/post/poster_id.html
Normal file
3
templates/post/poster_id.html
Normal file
@@ -0,0 +1,3 @@
|
||||
{% if config.poster_ids %}
|
||||
ID: {{ post.ip|poster_id(post.id) }}
|
||||
{% endif %}
|
5
templates/post/subject.html
Normal file
5
templates/post/subject.html
Normal file
@@ -0,0 +1,5 @@
|
||||
{% if post.subject|length > 0 %}
|
||||
{# show subject #}
|
||||
<span class="subject">{{ post.subject|bidi_cleanup }}</span>
|
||||
{% endif %}
|
||||
|
1
templates/post/time.html
Normal file
1
templates/post/time.html
Normal file
@@ -0,0 +1 @@
|
||||
<time datetime="{{ post.time|date('%Y-%m-%dT%H:%M:%S') }}{{ timezone() }}">{{ post.time|date(config.post_date) }}</time>
|
Reference in New Issue
Block a user