Solutions for MEIM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 334B

123456789101112
  1. {% extends "base.html" %}
  2. {% block title %} {{ title }} {% endblock title %}
  3. {% block content %}
  4. {% for notice in notices %}
  5. <div class="jumbotron">
  6. <h1 class="display-6">{{ notice.notice_title }}</h1>
  7. <p class="lead">{{notice.notice_text}}</p>
  8. </div>
  9. {% endfor %}
  10. {% endblock content %}