jam-cloud/web/app/views/layouts/client.html.erb

35 lines
1.2 KiB
Plaintext
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title><%= full_title(yield(:title)) %></title>
<!--[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'>-->
<%= 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>
<%= include_gon %>
2017-07-17 00:38:40 +00:00
<!--<% if Rails.env.test? %>
<%= javascript_include_tag "sinon" %>
2017-07-17 00:38:40 +00:00
<% end %>-->
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
<meta name="description" content="Enter here to browse the JamKazam platform">
<% if content_for?(:social_meta) %>
<%= yield(:social_meta) %>
2014-02-06 16:31:52 +00:00
<% else %>
<%= render "layouts/social_meta" %>
2014-02-06 16:31:52 +00:00
<% end %>
<%= yield(:extra_js) %>
<%= render "shared/ad_sense" %>
</head>
<body class="jam" data-client-type="<%= @nativeClient ? 'client' : 'browser' %>">
2020-09-15 00:51:01 +00:00
<%= render "shared/recurly" %>
<%= yield %>
<%= render "shared/ga" %>
<%= render "shared/stripe" %>
2016-01-14 10:49:02 +00:00
<%= render "shared/olark" %>
</body>
</html>