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

24 lines
451 B
HTML
Raw Normal View History

2016-03-10 00:28:35 +09:00
<!DOCTYPE html>
2016-04-01 18:32:28 +09:00
<!--if lt IE 7<html class="no-js lt-ie9 lt-ie8 lt-ie7">
-->
<!--if IE 7<html class="no-js lt-ie9 lt-ie8">
-->
<!--if IE 8<html class="no-js lt-ie9">
-->
<!-- [if gt IE 8] <!-->
<html lang="en" class="no-js">
<!-- <![endif]-->
2016-03-10 00:28:35 +09:00
<head>
2016-04-01 18:32:28 +09:00
2016-03-10 00:28:35 +09:00
{% 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 %}
2016-04-01 18:32:28 +09:00
2016-03-13 02:14:19 +09:00
<script>
NProgress.done();
</script>
2016-03-10 00:28:35 +09:00
</body>
</html>