2012-06-15 08:30:06 +00:00
|
|
|
<!DOCTYPE html>
|
2013-02-21 09:17:51 +00:00
|
|
|
<html lang="en">
|
2012-06-15 08:30:06 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2013-02-21 09:17:51 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2013-02-20 09:32:21 +00:00
|
|
|
<title>{{ title }}</title>
|
2012-06-15 08:30:06 +00:00
|
|
|
<meta name="generator" content="wnframework">
|
2012-09-24 13:43:42 +00:00
|
|
|
<script type="text/javascript" src="lib/js/lib/jquery/jquery.min.js"></script>
|
2012-12-20 05:07:37 +00:00
|
|
|
<script type="text/javascript" src="js/all-web.min.js"></script>
|
2012-06-15 08:30:06 +00:00
|
|
|
<script type="text/javascript" src="js/wn-web.js"></script>
|
|
|
|
<link type="text/css" rel="stylesheet" href="css/all-web.css">
|
|
|
|
<link type="text/css" rel="stylesheet" href="css/wn-web.css">
|
|
|
|
|
2012-07-09 14:32:52 +00:00
|
|
|
{% if favicon %}
|
|
|
|
<link rel="shortcut icon" href="files/{{ favicon }}" type="image/x-icon">
|
|
|
|
<link rel="icon" href="files/{{ favicon }}" type="image/x-icon">
|
|
|
|
{% else %}
|
2012-09-24 13:43:42 +00:00
|
|
|
<link rel="shortcut icon" href="app/images/favicon.ico" type="image/x-icon">
|
|
|
|
<link rel="icon" href="app/images/favicon.ico" type="image/x-icon">
|
2012-07-09 14:32:52 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2013-03-11 12:27:57 +00:00
|
|
|
{% if description %}
|
|
|
|
<meta name="description" content="{{ description }}">
|
|
|
|
{% endif %}
|
2012-07-09 14:32:52 +00:00
|
|
|
|
2012-06-15 08:30:06 +00:00
|
|
|
{% block header %}
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
2013-02-21 09:17:51 +00:00
|
|
|
</body>
|
|
|
|
</html>
|