40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
<!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"/>
|
|
<![endif]-->
|
|
<script src="//ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script>
|
|
<script>
|
|
if (window.WebFont) {
|
|
WebFont.load({
|
|
google: {
|
|
families: ['Raleway:100,200,300,400,500,600,700']
|
|
},
|
|
timeout :5000
|
|
});
|
|
}
|
|
</script>
|
|
<!--<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" %>
|
|
<% 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 %>
|
|
<%= include_gon %>
|
|
<%= javascript_include_tag "application" %>
|
|
<%= csrf_meta_tags %>
|
|
<% if content_for?(:social_meta) %>
|
|
<%= yield(:social_meta) %>
|
|
<% else %>
|
|
<%= render "layouts/social_meta" %>
|
|
<% end %>
|
|
<%= yield(:extra_js) %>
|
|
</head>
|
|
<body class="jam" data-client-type="<%= @nativeClient ? 'client' : 'browser' %>">
|
|
<%= yield %>
|
|
<%= render "shared/ga" %>
|
|
</body>
|
|
</html>
|