The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
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 %}