{% macro render_username(user, add_domain=True) -%} {% if user.deleted -%} [deleted] {% else -%} {% if user.avatar_id and not low_bandwidth and not collapsed -%} {% endif -%} {{ user.display_name() }}{% if add_domain and not user.is_local() %}@{{ user.ap_domain }}{% endif %} {% if user.created_recently() -%} {% endif -%} {% if user.bot -%} {% endif -%} {% if user.id != current_user.id -%} {% if user.reputation < -10 -%} {% elif user.reputation < 0 -%} {% endif -%} {% endif -%} {% endif -%} {% endmacro -%} {% macro render_communityname(community, add_domain=True) -%} {% if community.icon_id and not low_bandwidth and not collapsed -%} {% endif -%} {{ community.title }}{% if add_domain and not community.is_local() %}@{{ community.ap_domain }}{% endif %} {% endmacro -%}
{% block head -%} {% block styles -%} {{ bootstrap.load_css() }} {% if not low_bandwidth -%} {% endif -%} {% if theme() and file_exists('app/templates/themes/' + theme() + '/styles.css') -%} {% endif -%} {% endblock -%}