webeng/news/templates/posts/index.html
2019-11-19 12:48:20 +01:00

21 lines
412 B
HTML

{% extends 'base.html' %}
{% block title %}
Index
{% endblock %}
{% block content %}
<div class="jumbotron">
<h1 class="display-4">Index of News App</h1>
<div class=container>
{% for notice in notices %}
<h3>{{ notice.notice_title }}</h3>
<p>{{ notice.notice_text }}</p>
{% endfor %}
</div>
<!--p class="lead">Some placeholder Text</p-->
</div>
{% endblock %}