bornhack-website/news/templates/news_detail.html
2016-06-05 23:20:06 +02:00

10 lines
230 B
HTML

{% extends 'base.html' %}
{% load commonmark %}
{% block content %}
<div>
<h3>{{ news_item.title }} <small>{{ news_item.published_at|date:"Y-m-d" }}</small></h3>
</div>
{{ news_item.content|commonmark }}
{% endblock %}