bornhack-website/news/templates/news_detail.html

10 lines
230 B
HTML
Raw Normal View History

2016-06-05 21:20:06 +00:00
{% 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 %}