This repository has been archived by the owner on Mar 4, 2021. It is now read-only.
generated from maizzle/maizzle
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.njk
35 lines (33 loc) · 1.5 KB
/
default.njk
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
<!DOCTYPE {{ page.doctype or 'html' }}>
<html {% if page.htmlClass %}class="{{ page.htmlClass }}"{% endif %} lang="{{ page.language or 'en' }}" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta charset="{{ page.charset or 'utf-8' }}">
<meta name="x-apple-disable-message-reformatting">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone=no, date=no, address=no, email=no">
{% if page.title %}<title>{{ page.title }}</title>{% endif %}
{% if page.googleFonts %}<link href="https://fonts.googleapis.com/css?family={{ page.googleFonts }}" rel="stylesheet" media="screen">{%- endif %}
<!--[if mso]>
<xml>
<o:OfficeDocumentSettings>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml>
<style>
table {border-collapse: collapse;}
td,th,div,p,a,h1,h2,h3,h4,h5,h6 {font-family: "Segoe UI", sans-serif; mso-line-height-rule: exactly;}
</style>
<![endif]-->
{% if css %}<style>{{ css }}</style>{% endif %}
{% block head %}{% endblock %}
</head>
<body {% if page.bodyClass %}class="{{ page.bodyClass }}"{% endif %}>
{% if page.preheader %}
<div class="hidden">{{ page.preheader }}</div>
{% endif %}
<div role="article" aria-roledescription="email" aria-label="{{ page.title or '' }}" lang="{{ page.language or 'en'}}">
{% block template %}{% endblock %}
</div>
</body>
</html>