mirror of
https://github.com/hequan2017/seal.git
synced 2026-02-03 10:13:27 +08:00
47 lines
725 B
Python
47 lines
725 B
Python
{% load staticfiles %}
|
|
{% load static %}
|
|
{% load bootstrap3 %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
{% include "base/_css.html" %}
|
|
{% block header-css %}
|
|
{% endblock %}
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div id="wrapper">
|
|
|
|
|
|
{% include "base/_nav.html" %}
|
|
|
|
<div id="page-wrapper" class="gray-bg">
|
|
{% include "base/_navbar-static-top.html" %}
|
|
|
|
{% block page-content %}
|
|
|
|
|
|
{% endblock %}
|
|
{% include "base/_footer.html" %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
{% include "base/_js.html" %}
|
|
|
|
{% block footer-js %}
|
|
{% endblock %}
|
|
|
|
</html>
|