{{config.SITE_NAME}}
  
  
  {% if not is_logged_in() %}
    {% if not config.DISABLE_SIGNUP %}
    Welcome, guest. Please sign up or log in
    {% else %}
    Welcome, guest. Please log in
    {% endif %}
  {% else %}
    {% with user = get_active_user() %}
      Welcome, {{user.username}}
      •
      Settings
      •
      Inbox
      {% if config.DISABLE_SIGNUP and user.can_invite() %}
        •
        Invite to {{ config.SITE_NAME }}
      {% endif %}
      {% if user.is_mod() %}
        •
        User list
      {% endif %}
    {% endwith %}
  {% endif %}