51 lines
1.8 KiB
Plaintext
51 lines
1.8 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 "minimal/minimal", media: "all" %>
|
|
<%= include_gon(:init => true) %>
|
|
<%= csrf_meta_tags %>
|
|
<meta name="description" content="<%= meta_description(yield(:description)) %>">
|
|
<% if content_for?(:social_meta) %>
|
|
<%= yield(:social_meta) %>
|
|
<% else %>
|
|
<%= render "layouts/social_meta" %>
|
|
<% end %>
|
|
<%= render "shared/ad_sense" %>
|
|
</head>
|
|
<body class="minimal jam <%= yield(:page_name) %>">
|
|
<div id="minimal-container">
|
|
<%= javascript_include_tag "minimal/minimal" %>
|
|
<div class="wrapper">
|
|
<%= yield %>
|
|
</div>
|
|
</div>
|
|
<%= render "clients/help" %>
|
|
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
JK = JK || {};
|
|
|
|
JK.root_url = "<%= root_url %>"
|
|
|
|
<% if current_user %>
|
|
JK.currentUserId = '<%= current_user.id %>';
|
|
JK.currentUserAvatarUrl = JK.resolveAvatarUrl('<%= current_user.photo_url %>');
|
|
JK.currentUserName = '<%= current_user.name %>';
|
|
<% else %>
|
|
JK.currentUserId = null;
|
|
JK.currentUserAvatarUrl = null;
|
|
JK.currentUserName = null;
|
|
<% end %>
|
|
})
|
|
</script>
|
|
|
|
<%= render "shared/ga" %>
|
|
<!-- version info: <%= version %> -->
|
|
</body>
|
|
</html> |