-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.erb
43 lines (40 loc) · 1.44 KB
/
layout.erb
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<%= yield_content :head %>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="header">
<header>
<h1><a href="http://coke-js.org" id="logo">COKE - node.js MVC</a></h1>
</header>
<nav>
<ul>
<li class="nav-item"><a href="http://coke-js.org" id="nav-selected" class="nav-link">Home</a></li>
<li class="nav-item"><a href="/" class="nav-link">Demos</a></li>
<li class="nav-item"><a href="/" class="nav-link">Docs</a></li>
<li class="nav-item"><a href="http://forum.coke-js.org" class="nav-link">Forum</a></li>
<li class="nav-item"><a href="https://github.com/dreamerslab/coke" class="nav-link">Source</a></li>
</ul>
</nav>
</div> <!-- #header -->
<div id="content-wrap" class="container">
<div class="row">
<%= yield %>
</div> <!-- .row -->
</div>
<footer>
<div class="footer-text">Powered by </div>
<a href="http://coke-js.org" id="sublogo">Coke</a>
<div class="footer-text">| Sponsored by </div>
<a href="http://dreamerslab.com/" id="dreamerslab" target="_blank">DreamersLab</a>
</footer>
<%= javascript_include_tag 'prettify' %>
<%= yield_content :script %>
</body>
</html>