mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-28 12:58:48 +01:00
62 lines
2.7 KiB
Text
62 lines
2.7 KiB
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><%= content_for?(:title) ? yield(:title) : @page_title %></title>
|
|
<%= csrf_meta_tags %>
|
|
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
|
|
<!--[if lt IE 9]>
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.1/html5shiv.js" type="text/javascript"></script>
|
|
<![endif]-->
|
|
<%= stylesheet_link_tag "application", :media => "all" %>
|
|
<!-- For third-generation iPad with high-resolution Retina display: -->
|
|
<!-- Size should be 144 x 144 pixels -->
|
|
<%= favicon_link_tag 'apple-touch-icon-144x144-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '144x144' %>
|
|
<!-- For iPhone with high-resolution Retina display: -->
|
|
<!-- Size should be 114 x 114 pixels -->
|
|
<%= favicon_link_tag 'apple-touch-icon-114x114-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '114x114' %>
|
|
<!-- For first- and second-generation iPad: -->
|
|
<!-- Size should be 72 x 72 pixels -->
|
|
<%= favicon_link_tag 'apple-touch-icon-72x72-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '72x72' %>
|
|
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
|
|
<!-- Size should be 57 x 57 pixels -->
|
|
<%= favicon_link_tag 'apple-touch-icon-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png' %>
|
|
<!-- For all other devices -->
|
|
<!-- Size should be 32 x 32 pixels -->
|
|
<%= favicon_link_tag 'favicon.ico', :rel => 'shortcut icon' %>
|
|
</head>
|
|
<body class="<%= controller.controller_name %>">
|
|
|
|
<% cache [:navbar] do -%>
|
|
<%= render partial: "shared/navbar" %>
|
|
<% end -%>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row-fluid">
|
|
<div class="span8 offset2 tracks-middle">
|
|
<%= bootstrap_flash %>
|
|
<%= yield %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<% cache [:footer] do -%>
|
|
<%= render partial: "shared/footer" %>
|
|
<% # dialogs / partials -%>
|
|
<%= render partial: "shared/keyboard_shortcuts" %>
|
|
<%= render partial: "shared/add_new_action" %>
|
|
<%= render partial: "shared/goto" %>
|
|
<%= render partial: "todos/todo_sub_menu" %>
|
|
<%= render partial: "projects/go_project" %>
|
|
<% end -%>
|
|
<%
|
|
# Javascripts
|
|
# ==================================================
|
|
# Placed at the end of the document so the pages load faster
|
|
-%>
|
|
<%= javascript_include_tag "application" %>
|
|
|
|
</body>
|
|
</html>
|