31 lines
812 B
Handlebars
31 lines
812 B
Handlebars
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
{{! Document Settings }}
|
||
|
<meta charset="utf-8" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
|
|
||
|
{{! Page Meta }}
|
||
|
<title>{{meta_title}}</title>
|
||
|
<meta name="description" content="{{meta_description}}" />
|
||
|
<link rel="shortcut icon" href="/assets/images/favicon.png" />
|
||
|
|
||
|
<meta name="HandheldFriendly" content="True" />
|
||
|
<meta name="MobileOptimized" content="320" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
||
|
<link rel="shortcut icon" href="{{asset "favicon.ico"}}">
|
||
|
|
||
|
{{! Styles'n'Scripts }}
|
||
|
|
||
|
{{! Ghost outputs important style and meta data with this tag }}
|
||
|
{{ghost_head}}
|
||
|
</head>
|
||
|
<body class="{{body_class}}">
|
||
|
|
||
|
{{! Everything else gets inserted here }}
|
||
|
{{{body}}}
|
||
|
|
||
|
</body>
|
||
|
</html>
|