-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.html
52 lines (47 loc) · 1.7 KB
/
layout.html
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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>she.codes</title>
<link rel="stylesheet" href="../foundation/css/foundation.css" />
<link rel="stylesheet" href="../episode.css" />
<script src="../foundation/js/vendor/modernizr.js"></script>
</head>
<body>
<div class="fixed">
<nav class="top-bar" data-topbar>
<ul class="title-area">
<li class="name">
<h1><a href="#">she.codes</a></h1>
</li>
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -x->
<li class="toggle-topbar menu-icon"><a href="#">
<span>Menu</span></a>
</li -->
</ul>
<section class="top-bar-section">
<ul class="left">
<li class="active"><a href="#">BETA</a></li>
<li class="has-dropdown">
<a href="#">S0E0</a>
<ul class="dropdown">
<!-- li><a href="#">First link in dropdown</a></li -->
</ul>
</li>
</ul>
<!-- Left Nav Section -->
<!-- ul class="left">
<li><a href="#">Left Nav Button</a></li>
</ul -->
</section>
</nav>
</div>
<%- content %>
</body>
<script src="../foundation/js/vendor/jquery.js"></script>
<script src="../foundation/js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</html>