Files
service_mail/flaskapp/templates/layout.html
Andreas Stephanides 630b982502 refactor1
2017-08-28 09:08:47 +02:00

18 lines
388 B
HTML

{# -*-jinja2-*- #}
<html>
<head>
<title>{{title}}</title>
<script src="/static/jquery-3.2.0.min.js" ></script>
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css"/>
<script src="/static/bootstrap/js/bootstrap.min.js" ></script>
{% block header %}
{% endblock %}
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>