The version of vichan running on lainchan.org
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

19 linhas
615B

  1. {% if config.display_flags and post.modifiers.flag %}
  2. <img
  3. {% if config.country_flags_condensed %}
  4. class="flag flag-{{ post.modifiers.flag }}" src="{{ config.image_blank }}"
  5. {% else %}
  6. class="flag" src="{{ config.uri_flags|sprintf(post.modifiers.flag) }}"
  7. {% endif %}
  8. style="{% if post.modifiers['flag style'] %}
  9. {{ post.modifiers['flag style'] }}
  10. {% else %}
  11. {{ config.flag_style }}
  12. {% endif %}"
  13. {% if post.modifiers['flag alt'] %} alt="{{ post.modifiers['flag alt'] | e('html_attr') }}"
  14. title="{{ post.modifiers['flag alt'] | e('html_attr') }}"
  15. {% endif %}
  16. >
  17. {% endif %}