webeng/news/templates/posts/index.html

21 lines
412 B
HTML
Raw Normal View History

2019-11-05 12:56:51 +01:00
{% extends 'base.html' %}
{% block title %}
Index
{% endblock %}
{% block content %}
<div class="jumbotron">
<h1 class="display-4">Index of News App</h1>
2019-11-19 12:48:20 +01:00
<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-->
2019-11-05 12:56:51 +01:00
</div>
{% endblock %}