{% extends "orgapy/layout/skeleton.html" %}
{% block menu %}
{% include 'orgapy/partials/menu_notes.html' %}
{% include 'orgapy/partials/menu_quotes.html' %}
{% include 'orgapy/partials/menu_sheets.html' %}
{% include 'orgapy/partials/menu_maps.html' %}
{% endblock menu %}
{% block main_content %}
{% if objects %}
{% for o in objects %}
{% if o.get_class == 'note' %}
{{ o.title }}
{% if o.categories.all %}
{% for category in o.categories.all %}
#{{category.name}}
{% endfor%}
{% else %}
uncategorized
{% endif %}
{% if o.pinned %}
{% endif %}
{% if o.public %}
{% endif %}