I working on user's system with nodejs. I used express and nunjucks. I trying to render a template when the user logged to the site and anoter template when the user logoff.
{% if isLoging %}
{% include "toolbar_guest.html" %}
{% else %}
{% include "toolbar_guest.html" %}
{% endif %}
but its not working... if I try this:
{% if isLoging %}
connected
{% else %}
not connected!
{% endif %}
its work..
{% include 'toolbar_user.html' if isLogging else 'toolbar_guest.html' %}