25 lines
869 B
HTML
25 lines
869 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ title }}</title>
|
|
<meta name="generator" content="wnframework">
|
|
<script type="text/javascript" src="lib/js/lib/jquery/jquery.min.js"></script>
|
|
<script type="text/javascript" src="js/all-web.min.js"></script>
|
|
<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">
|
|
<link rel="shortcut icon" href="{{ favicon }}" type="image/x-icon">
|
|
<link rel="icon" href="{{ favicon }}" type="image/x-icon">
|
|
{% if description -%}
|
|
<meta name="description" content="{{ description }}">
|
|
{%- endif %}
|
|
{% block header -%}
|
|
{%- endblock %}
|
|
</head>
|
|
<body>
|
|
{% block body %}
|
|
{% endblock %}
|
|
</body>
|
|
</html> |