21 lines
558 B
HTML
21 lines
558 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block left %}
|
|
{% for note in public_notes %}
|
|
<div id="categories">
|
|
<div class="note">
|
|
<a href="/note/{{ note.author.id}}/{{ note.id }}"><div class="title">{{ note.title }}</div></a>
|
|
<div class="date">{{ note.created_date }}</div>
|
|
<div class="summary">{{ note.short_summary }}</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="note">
|
|
<div id="title" class="title">{{ note.title }}</div>
|
|
<div id="transformed_content">{{ note.transformed_text|safe }}</div>
|
|
</div>
|
|
{% endblock %}
|