-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbase.html
More file actions
110 lines (81 loc) · 3.31 KB
/
base.html
File metadata and controls
110 lines (81 loc) · 3.31 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Information -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- for Google -->
<meta name="description" content="{{page.description}}"/>
<meta name="author" content="{{site.author}}"/>
<meta name="theme-color" content="{{site.color}}">
<meta name="copyright" content="{{site.author}}"/>
<meta name="application-name" content="{{site.title}}"/>
<!-- for Facebook -->
<meta property="og:title" content="{%if page.title %}{{page.title}} | {%endif%} {{site.title}}"/>
<meta property="og:url" content="https://pages.hackcu.org"/>
<meta property="og:description" content="{%if page.description %}{{page.description}}{%endif%} "/>
<!-- for Twitter -->
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="{%if page.title %}{{page.title}} | {%endif%} {{site.title}}"/>
<meta name="twitter:site" content="@hackcu">
<meta name="twitter:creator" content="@hackcu">
<meta name="twitter:description" content="{%if page.description %}{{page.description}}{%endif%}">
<title>{%if page.title %}{{page.title}} | {%endif%} {{site.title}}</title>
<!-- Favicon -->
<link rel="shortcut icon" href="/assets/img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/assets/vendor/css/font-awesome.min.css">
<!-- Our own CSS, yay! -->
<link rel="stylesheet" href="/assets/css/main.css?_={{ site.time | date: '%s' }}">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
</head>
<body>
<div class="wrapper">
{% include navbar.html %}
<div class="container">
<div class="row">
<div class="col s12 content">
{%if page.title %}
<div class="row center">
<h1>{{page.title}}</h1>
</div>
{%endif%}
{{content}}
</div>
</div>
</div>
</div>
<script src="/assets/vendor/js/jquery.min.js"></script>
<script src="/assets/js/countdown.js?_={{ site.time | date: '%s' }}"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script type="text/javascript">
$(".button-collapse").sideNav();
</script>
<!-- Make links target _blank -->
<script>
(function() {
var links = document.links;
for (var i = 0, linksLength = links.length; i < linksLength; i++) {
// can also be
// links[i].hostname != 'subdomain.example.com'
if (links[i].hostname != window.location.hostname) {
links[i].target = '_blank';
links[i].className += ' externalLink';
}
}
})();
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-114044657-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-114044657-1');
</script>
</body>
</html>