blob: aa95dd294d2bba9bf10ea1697f198053000d37b8 (
plain)
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>
<head>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= content_for?(:title) ? yield(:title) : "Parley" %></title>
<meta name="description" content="">
<meta name="author" content="">
<%= favicon_link_tag 'favicon.ico' %>
<link rel="apple-touch-icon" href="/assets/touch-icon-iphone.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/assets/touch-icon-ipad.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/assets/touch-icon-iphone4.png" />
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<div id="main" role="main">
<div class="container">
<div class="content">
<div class="row">
<div class="span12">
<h1 id="logo">Parley</h1>
<%= render 'layouts/messages' %>
<%= yield %>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="content">
<div class="row">
<%= link_to "Privacy Policy", page_path("privacy") %> © 2013 Parley, Inc. All rights reserved.
</div>
</div>
</footer>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-42669511-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
|