44 lines
1.4 KiB
Plaintext
44 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]-->
|
|
<link href='http://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700' rel='stylesheet' type='text/css'>
|
|
<%= stylesheet_link_tag "landing/landing", 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 %>
|
|
<%= csrf_meta_tags %>
|
|
</head>
|
|
<body>
|
|
<div id="landing-container">
|
|
<%= javascript_include_tag "landing/landing" %>
|
|
|
|
<div class="logo-message">
|
|
<%= link_to root_path do %>
|
|
<%= image_tag("header/logo.png", :alt => "JamKazam logo", :size => "247x45") %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<br />
|
|
<br />
|
|
|
|
<div id="landing-inner">
|
|
<%= yield %>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="footer-container">
|
|
<%= render "clients/footer" %>
|
|
</div>
|
|
|
|
<%= render "shared/ga" %>
|
|
<!-- version info: <%= version %> -->
|
|
</body>
|
|
</html>
|