brotherton-erpnext/website/templates/html/base.html

33 lines
1.0 KiB
HTML
Raw Normal View History

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>
<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">
{% 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">
{% endif %}
2013-03-11 12:27:57 +00:00
{% if description %}
<meta name="description" content="{{ description }}">
{% endif %}
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>