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

18 lines
270 B
HTML
Raw Normal View History

2016-03-10 00:28:35 +09:00
<!DOCTYPE html>
<html lang="en">
<head>
{% include "header.html" %}
</head>
<body>
<div id="sidebar">
{% block sidebar %}
{% include "sidebar.html" %}
{% endblock %}
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
</body>
</html>