1
0
Fork 0
mnemonics/asset/template/layout/base.html

15 lines
241 B
HTML
Raw Normal View History

2016-03-10 00:28:35 +09:00
<!DOCTYPE html>
<html lang="en">
<head>
{% include "header.html" %}
2016-03-13 02:14:19 +09:00
{% block head_add_header %}
{% endblock %}
2016-03-10 00:28:35 +09:00
</head>
2016-03-12 01:17:17 +09:00
<body class="nav-md">
2016-03-13 02:14:19 +09:00
{% block body %}{% endblock %}
<script>
NProgress.done();
</script>
2016-03-10 00:28:35 +09:00
</body>
2016-03-13 02:14:19 +09:00
2016-03-10 00:28:35 +09:00
</html>