{% extends "layouts/default.html" %} {% block title %}Dashboard{% endblock %} {% block content %} {% include "user/user-menu-bar.html" %}
{% if session.username %}
You are logged in.
{% endif %}
Session Info
{% for (key . value) in session %}{{ key }} . {{ value }}
{% endfor %}
{% endblock %}