]> git.p6c8.net - pcdenotes.git/blob - notes/templates/note.html
Fixed <h2> CSS classes in archive views
[pcdenotes.git] / notes / templates / note.html
1 {% load markdownify %}
2 <article class="container mt-5{% if note.is_draft %} text-muted{% endif %}">
3 <h2><a href="{{ note.get_absolute_url }}" class="{% if note.is_draft %}text-muted{% else %}link-dark{% endif %}">{{ note.title }}</a></h2>
4 {% if note.is_draft %}<p class="fw-bold">Status: Draft</p>{% endif %}
5 <div class="mt-3">{{ note.content|linebreaksbr|markdownify }}</div>
6 <p class="publication-date">Published on {{ note.created_at|date:"Y-m-d, H:i" }}</p>
7 </article>

patrick-canterino.de