-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtemplate.tmpl
63 lines (53 loc) · 1.42 KB
/
template.tmpl
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>$title$</title>
<link rel="stylesheet" type="text/css" href="./css/main.css">
<link rel="stylesheet" type="text/css" href="https://edwardtufte.github.io/tufte-css/tufte.css">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-155234935-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-155234935-1');
</script>
<link rel="stylesheet" type="text/css" href="./css/main.css" />
<style>
/*FOR MOCKUP*/
body {
height: 150vh;
}
@media screen and (min-width: 786px) {
p {
width: 55%;
}
.chart-container {
width: 55%;
}
}
/*END MOCKUP*/
</style>
<script src="./css/supernav.js"></script>
</head>
<body>
<nav id="main-nav">
<ul class="nav-links">
<li>
<span class="powered">powered by:</span>
<a href="https://lambdaclass.com" target="_blank"><span class="text">Lambdaclass</span></a>
</li>
</ul>
<div class="nav-info">
reading: Finance Playground
</div>
</nav>
</head>
<body>
<article>
$body$
</article>
</body>
</html>