The version of vichan running on lainchan.org
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

17 рядки
694B

  1. {% set capcode = post.capcode|capcode %}
  2. {% if post.email|length > 0 and (config.hide_sage!=true or post.email!='sage') and config.hide_email!=true %}
  3. {# start email #}
  4. <a class="email" href="mailto:{{ post.email }}">
  5. {% endif %}
  6. <span {% if capcode.name %}style="{{ capcode.name }}" {% endif %}class="name">{{ post.name|bidi_cleanup }}</span>
  7. {% if post.trip|length > 0 %}
  8. <span {% if capcode.trip %}style="{{ capcode.trip }}" {% endif %}class="trip">{{ post.trip }}</span>
  9. {% endif %}
  10. {% if post.email|length > 0 and (config.hide_sage!=true or post.email!='sage') and config.hide_email!=true %}
  11. {# end email #}
  12. </a>
  13. {% endif %}
  14. {% if capcode %}
  15. {{ capcode.cap }}
  16. {% endif %}