-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinc.header.mustache
40 lines (27 loc) · 1.12 KB
/
inc.header.mustache
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{{!--
Header include
==============
`charcoal/admin/template/inc.header`
Open the HTML document and include meta tags and required external resources.
Based on the HTML5 boilerplate.
--}}
<!doctype html>
<html {{& htmlAttr }}>
<head>
<meta charset="utf-8">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="HandheldFriendly" content="True">
<title>{{& documentTitle }}</title>
<base href="{{ adminUrl }}" />
<!-- Theming -->
<meta name="theme-color" content="#393939">
{{> charcoal/admin/template/inc.favicon }}
<link href="https://fonts.googleapis.com/css?family=Roboto:400,300,500,700,400italic" rel="stylesheet" type="text/css">
<link href="{{ baseUrl }}assets/admin/styles/charcoal.admin.vendors.css" rel="stylesheet" type="text/css">
<link href="{{ baseUrl }}assets/admin/styles/charcoal.admin.css" rel="stylesheet" type="text/css">
{{> charcoal/admin/template/inc.head.extra }}
</head>
<body{{# showHeaderMenu }} class="has-nav-main"{{/ showHeaderMenu }}>
<div class="o-flex">
{{> charcoal/admin/widget/menu.header }}