{% include 'icons/user-placeholder.svg.twig' with {'class': 'h-full w-full'} %}
{% if logged_in %} Username username@email.com
{{ _self.user_action('Profile', 'user') }} {{ _self.user_action('Settings', 'settings') }} {{ _self.user_action('Logout', 'logout') }}
{% else %} not logged in {% endif %}
{% if not logged_in %}
{% include 'icons/euphcloud.svg.twig' with {'class': 'w-6 h-6'} %} Login with Euphcloud {% endif %}
{% macro user_action(name, icon) %} {% endmacro %} {% macro nav_item(name, href, icon) %}
  • {% include 'icons/' ~ icon ~ '.svg.twig' with {'class': 'h-6 w-6'} %} {{ name }}
  • {% endmacro %}