{% extends "base/base.html" %} {% block title %}{{ note.title }}{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block content %}
{% include 'auth/snippets/info.html' %}

{{ note.title }}

{{ note.created_at }}

{{ note.body }}

tags: {% for tag in note.tags %} {% include "notes/snippets/tag.html" %} {% else %}

no tags

{% endfor %}
{% if g.user and g.user._id == note.author_id %} {% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}