-
Notifications
You must be signed in to change notification settings - Fork 0
/
_template.pug
72 lines (58 loc) · 3.15 KB
/
_template.pug
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
include ../../_COG-Framework-2020/pug/_navigation.pug
include ../../_COG-Framework-2020/pug/_footer.pug
block vars
doctype html
html(lang="en")
head
noscript.
style.
body {
opacity: 1;
}
meta(charset="utf-8")
meta(http-equiv="x-ua-compatible", content="ie=edge")
meta(name="viewport" content="width=device-width, initial-scale=1")
meta(name="description" content=metaDescription)
meta(name="keywords" content=metaKeywords)
title!= pageTitle
//- ======================================================================
//- CSS
//- ======================================================================
//- link(rel="stylesheet", href="css/app.css", media="screen")
//- script(defer src="js/min/app-min.js")
//- link(rel="preload" href="css/styles.pure.css" as="style")
//- link(rel="stylesheet" href="css/app.css" media="print" onload="this.media='all'")
link(rel='stylesheet', href='css/app.css')
//- ======================================================================
//- FONT PRELOAD
//- ======================================================================
link(rel="preload" as="font" crossorigin="anonymous" type="font/woff2" href="fonts/Cognizant-Sans/CognizantSans-Heavy.woff2")
link(rel="preload" as="font" crossorigin="anonymous" type="font/woff2" href="fonts/Cognizant-Sans/CognizantSans-Regular.woff2")
link(rel="preload" as="font" crossorigin="anonymous" type="font/woff2" href="fonts/Cognizant-Sans/CognizantSans-Bold.woff2")
link(rel="preload" as="font" crossorigin="anonymous" type="font/woff2" href="fonts/Cognizant-Sans/CognizantSans-Light.woff2")
link(rel="preload" as="font" crossorigin="anonymous" type="font/woff2" href="fonts/Cognizant-Icons-FONT/fonts/Cognizant-Icons.woff2")
//- ======================================================================
//- FAVICONS
//- ======================================================================
link(rel="apple-touch-icon", sizes="180x180", href="favicons/apple-touch-icon.png")
link(rel="icon", type="image/png", sizes="32x32", href="favicons/favicon-32x32.png")
link(rel="icon", type="image/png", sizes="194x194", href="favicons/favicon-194x194.png")
link(rel="icon", type="image/png", sizes="192x192", href="favicons/android-chrome-192x192.png")
link(rel="icon", type="image/png", sizes="16x16", href="favicons/favicon-16x16.png")
link(rel="manifest", href="favicons/site.webmanifest")
link(rel="mask-icon", href="favicons/safari-pinned-tab.svg", color="#0033a0")
link(rel="shortcut icon", href="favicons/favicon.ico")
meta(name="msapplication-TileColor", content="#0033a0")
meta(name="msapplication-TileImage", content="favicons/mstile-144x144.png")
meta(name="msapplication-config", content="favicons/browserconfig.xml")
meta(name="theme-color", content="#ffffff")
block extraStyles
body
+subnav(class="theme-default")
+primaryNav(class="theme-default")
.overflow-hidden
block content
+footer(class="theme-default")
a#scrollUp(href="#", title="Back to top")
script(src="js/min/app-min.js")
block extraScripts