bornhack-website/news/templates/news_detail.html

19 lines
547 B
HTML
Raw Normal View History

2016-06-05 21:20:06 +00:00
{% extends 'base.html' %}
{% load commonmark %}
2016-07-05 16:46:32 +00:00
{% block title %}
{{ news_item.title }} | {{ block.super }}
{% endblock %}
2016-06-05 21:20:06 +00:00
{% block content %}
<div>
{% if not_public %}
<div class="alert alert-danger">
<strong>This news item is not yet public.</strong> {% if timed %}It will become public at {{ news_item.published_at|date:'Y-m-d H:i' }}.{% endif%}
</div>
{% endif %}
2016-06-05 21:20:06 +00:00
<h3>{{ news_item.title }} <small>{{ news_item.published_at|date:"Y-m-d" }}</small></h3>
</div>
{{ news_item.content|commonmark }}
{% endblock %}