2012-09-21 04:46:45 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title><%= full_title(yield(:title)) %></title>
|
2015-04-15 20:16:05 +00:00
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
<!--[if IE]>
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/ie.css" media="screen, projection"/>
|
2012-10-03 04:00:35 +00:00
|
|
|
<![endif]-->
|
2014-02-14 23:41:01 +00:00
|
|
|
<!--<link href='http://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700' rel='stylesheet' type='text/css'>-->
|
2013-07-18 03:19:33 +00:00
|
|
|
<%= stylesheet_link_tag "client/client", media: "all" %>
|
2021-01-01 21:33:34 +00:00
|
|
|
<script src="//d2wy8f7a9ursnm.cloudfront.net/v7/bugsnag.min.js"></script>
|
2012-09-21 04:46:45 +00:00
|
|
|
<%= include_gon %>
|
2017-07-17 00:38:40 +00:00
|
|
|
<!--<% if Rails.env.test? %>
|
2016-05-08 02:17:19 +00:00
|
|
|
<%= javascript_include_tag "sinon" %>
|
2017-07-17 00:38:40 +00:00
|
|
|
<% end %>-->
|
2012-09-21 04:46:45 +00:00
|
|
|
<%= javascript_include_tag "application" %>
|
|
|
|
|
<%= csrf_meta_tags %>
|
2015-04-15 20:16:05 +00:00
|
|
|
<meta name="description" content="Enter here to browse the JamKazam platform">
|
2014-02-07 14:07:08 +00:00
|
|
|
<% if content_for?(:social_meta) %>
|
|
|
|
|
<%= yield(:social_meta) %>
|
2014-02-06 16:31:52 +00:00
|
|
|
<% else %>
|
2014-02-07 14:07:08 +00:00
|
|
|
<%= render "layouts/social_meta" %>
|
2014-02-06 16:31:52 +00:00
|
|
|
<% end %>
|
2014-11-06 19:16:58 +00:00
|
|
|
<%= yield(:extra_js) %>
|
2015-05-12 14:33:48 +00:00
|
|
|
<%= render "shared/ad_sense" %>
|
2012-09-21 04:46:45 +00:00
|
|
|
</head>
|
2014-04-01 23:38:36 +00:00
|
|
|
<body class="jam" data-client-type="<%= @nativeClient ? 'client' : 'browser' %>">
|
2020-09-15 00:51:01 +00:00
|
|
|
<%= render "shared/recurly" %>
|
2012-09-21 04:46:45 +00:00
|
|
|
<%= yield %>
|
2013-09-23 18:06:25 +00:00
|
|
|
<%= render "shared/ga" %>
|
2016-04-06 02:23:15 +00:00
|
|
|
<%= render "shared/stripe" %>
|
2016-01-14 10:49:02 +00:00
|
|
|
<%= render "shared/olark" %>
|
2012-09-21 04:46:45 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|