1234567891011121314151617181920 |
- {% 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 %}
|