18 lines
547 B
HTML
18 lines
547 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<h3>{{ newsitem.title }}</h3>
|
|
<p>{{ newsitem.created_at | date:'jS \o\f F, Y' }}</p>
|
|
<hr>
|
|
<div>
|
|
{{ newsitem.body_as_markdown|safe }}
|
|
</div>
|
|
<hr>
|
|
<div>
|
|
<span>Posted in the <a href="{% url 'news:list_category' category=newsitem.category.slug %}">{{ newsitem.category }}</a> category</span>
|
|
<span>{% include 'news/includes/display_tags.html' %}</span>
|
|
</div>
|
|
</article>
|
|
{% endblock %}
|