-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html.erb
37 lines (27 loc) · 1.39 KB
/
layout.html.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>nReduce -> an alliance of hackers</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400,300,700,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="./css/bootstrap.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="./css/application.css" type="text/css" media="screen" charset="utf-8">
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="./favicon.ico">
<link rel="apple-touch-icon" href="./img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="./img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="./img/apple-touch-icon-114x114.png">
</head>
<body class="pages <%= @page_class %>">
<%= render "_nav.html.haml" %>
<div class="container">
<%= yield %>
</div>
<script src="./js/jquery-1.7.1.js" type="text/javascript" charset="utf-8"></script>
<script src="./js/bootstrap.js" type="text/javascript" charset="utf-8"></script>
<script src="./js/jquery.example.js" type="text/javascript" charset="utf-8"></script>
<script src="./js/application.js" type="text/javascript" charset="utf-8"></script>
<script src="./js/pages.js" type="text/javascript" charset="utf-8"></script>
<%= render "_scripts.html.erb" %>
</body>
</html>