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
|
|
|
<script src="//ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script>
|
|
|
|
|
<script>
|
2014-04-22 17:53:41 +00:00
|
|
|
if (window.WebFont) {
|
|
|
|
|
WebFont.load({
|
|
|
|
|
google: {
|
|
|
|
|
families: ['Raleway:100,200,300,400,500,600,700']
|
|
|
|
|
},
|
|
|
|
|
timeout :5000
|
|
|
|
|
});
|
|
|
|
|
}
|
2014-02-14 23:41:01 +00:00
|
|
|
</script>
|
|
|
|
|
<!--<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" %>
|
2013-09-22 18:56:51 +00:00
|
|
|
<% if bugsnag? %>
|
|
|
|
|
<!-- THIS NEEDS TO BE IN FRONT OF ANY OTHER JAVASCRIPT INCLUDES ACCORDING TO BUGSNAG -->
|
|
|
|
|
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-1.0.9.min.js" data-apikey="<%= Rails.application.config.bugsnag_key %>"></script>
|
|
|
|
|
<% end %>
|
2012-09-21 04:46:45 +00:00
|
|
|
<%= include_gon %>
|
|
|
|
|
<%= 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) %>
|
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' %>">
|
2012-09-21 04:46:45 +00:00
|
|
|
<%= yield %>
|
2013-09-23 18:06:25 +00:00
|
|
|
<%= render "shared/ga" %>
|
2015-03-20 13:48:00 +00:00
|
|
|
<%= render "shared/recurly" %>
|
|
|
|
|
|
2012-09-21 04:46:45 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|