forked from stringer-rss/stringer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.erb
More file actions
45 lines (40 loc) · 1.18 KB
/
layout.erb
File metadata and controls
45 lines (40 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<title>
<%= yield_content :title %>
<%= t('layout.title') %>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="/img/favicon.png">
<link rel="apple-touch-icon-precomposed" href="/img/apple-touch-icon-precomposed.png">
<link href="//fonts.googleapis.com/css?family=Lato:300,400,700,900,400italic" rel="stylesheet" type="text/css">
<%= yield_content :head %>
<%= css :application %>
<%= js :application %>
</head>
<body>
<div id="wrap">
<div id="frame">
<%= render_partial :flash %>
<%= render_partial :shortcuts if current_user %>
<div class="container">
<div class="row-fluid">
<div class="span12">
<%= yield %>
</div>
</div>
</div>
</div>
<div id="push"></div>
</div>
<div id="footer">
<%= render_partial :footer %>
</div>
<script>
window.i18n = {};
window.i18n.titleName = "<%= t('layout.title') %>";
</script>
</body>
</html>