29 lines
910 B
HTML
Raw Normal View History

2012-06-15 14:00:06 +05:30
<!DOCTYPE html>
2013-02-21 14:58:48 +05:30
<html lang="en">
2012-06-15 14:00:06 +05:30
<head>
<meta charset="utf-8">
2013-02-20 15:02:21 +05:30
<title>{{ title }}</title>
2012-06-15 14:00:06 +05:30
<meta name="generator" content="wnframework">
2012-09-24 19:13:42 +05:30
<script type="text/javascript" src="lib/js/lib/jquery/jquery.min.js"></script>
<script type="text/javascript" src="js/all-web.min.js"></script>
2012-06-15 14:00:06 +05:30
<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">
{% 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 19:13:42 +05:30
<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">
{% endif %}
2012-06-15 14:00:06 +05:30
{% block header %}
{% endblock %}
</head>
<body>
{% block body %}
{% endblock %}
2013-02-21 14:58:48 +05:30
</body>
</html>