2020-03-13 02:59:13 +09:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
|
|
|
{% block stylesheets %}{% endblock %}
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: #333;
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
{% block javascripts %}{% endblock %}
|
|
|
|
|
2020-07-07 07:16:50 +09:00
|
|
|
{% if notices is defined %}
|
|
|
|
{% for notice in notices %}
|
|
|
|
<div> {{notice}} </div>
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
No notices here.
|
|
|
|
{% endif %}
|
2020-03-13 02:59:13 +09:00
|
|
|
</body>
|
|
|
|
</html>
|