This repository was archived by the owner on Apr 18, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathbase.hbs
More file actions
133 lines (123 loc) · 3.53 KB
/
base.hbs
File metadata and controls
133 lines (123 loc) · 3.53 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="{{{lang}}}">
<head>
<meta charset="utf-8">
<title>Node.js</title>
<link rel="dns-prefetch" href="http://fonts.googleapis.com">
<link rel="dns-prefetch" href="http://fonts.gstatic.com">
<link rel="dns-prefetch" href="http://www.google-analytics.com">
<meta name="author" content="Node.js Foundation">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/milligram.min.css" media="all">
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:700' rel='stylesheet' type='text/css'>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-67020396-2', 'auto');
ga('send', 'pageview');
</script>
<style>
a {
color: #80bd01;
}
.button {
background-color: #80bd01;
border: 0.1rem solid #80bd01;
}
div.live-event {
background-color: #b3b3b3;
border-radius: 3px;
margin: 10px 35px 10px 35px;
color: black;
font-family: "Open Sans Condensed",sans-serif;
text-transform: uppercase;
font-weight: bold;
}
div.live-event h3 {
margin-top:5px;
margin-bottom: 0;
text-transform: uppercase;
font-weight: bold;
font-size: 50px;
font-style: normal;
font-weight: 400;
line-height: 50px;
}
div.live-event h3 a,
div.live-event h3 a:visited {
text-decoration: underline;
color: black;
}
div.live-event p {
margin-bottom: 5px;
}
body {
margin: 0;
padding: 0;
}
div.top-container div.column h2 {
padding-top:50px;
color:#80bd01;
font-weight:500;
}
div.events-container {
margin: 0;
padding: 30px 10%;
background: url(/static/background.jpg);
}
div.footer-container {
background-color:#b3b3b3;
padding:15px;
}
div.footer-container a {
color:#fff;
white-space: nowrap;
}
div.footer-container p {
margin-bottom:0;
}
img.logo {
max-width:100%;
padding: 50px 50px 50px 50px;
}
.languages {
display: block;
position: absolute;
top: 20px;
right: 20px;
list-style: none;
}
.languages li {
display: inline-block;
}
</style>
</head>
<body>
<div class="top-container container">
<div class="row">
<div class="column" style="text-align:center">
<img class="logo" src="/static/new-node.png" alt=""/>
</div>
<div class="column">
{{{top}}}
</div>
</div>
<ul id="languages" class="languages">
<li><a data-lang="en" href="javascript:void(0);">English</a> |</li>
<li><a data-lang="zh-CN" href="javascript:void(0);">简体中文</a></li>
</ul>
</div>
<div class="events-container">
{{{content}}}
</div>
<div class="footer-container">
<div class="container">
<p>© 2016 Node.js Foundation. All Rights Reserved. Node.js is a trademark of Joyent, Inc. and is used with its permission. Please review the <a href="https://nodejs.org/static/documents/trademark-policy.pdf">Trademark Guidelines of the Node.js Foundation</a>.</p>
</div>
</div>
<script src="/static/languages.js"></script>
</body>
</html>