mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-13 18:40:49 +01:00
01538ed33a
I don't know why this works, but this extra whitespace is required on PHP 7.4. If you want to know why I hate PHP updates, this is why.
17 lines
696 B
HTML
17 lines
696 B
HTML
{% set capcode = post.capcode|capcode %}
|
|
{% if post.email|length > 0 and (config.hide_sage!=true or post.email!='sage') and config.hide_email!=true %}
|
|
{# 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 and (config.hide_sage!=true or post.email!='sage') and config.hide_email!=true %}
|
|
{# end email #}
|
|
</a>
|
|
{% endif %}
|
|
{% if capcode %}
|
|
{{ capcode.cap }}
|
|
{% endif %}
|