skill-assessment-app/app/views/layouts/admin.html.erb

41 lines
1.0 KiB
Plaintext
Raw Permalink Normal View History

2016-08-18 18:22:57 -05:00
<!DOCTYPE html>
2017-03-20 10:57:50 -05:00
<html lang="en">
<head>
2016-08-18 18:22:57 -05:00
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<%= csrf_meta_tags %>
<title><%= yield(:title) %></title>
<!--[if ! lte IE 8]><!-->
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
<!--<![endif]-->
2017-03-20 10:57:50 -05:00
</head>
2016-08-18 18:22:57 -05:00
2017-03-20 10:57:50 -05:00
<body>
<header>
<% if content_for?(:section_title) %>
<div><%= yield(:section_title) %></div>
<% else %>
<div>Skills Assessment Admin</div>
<% end %>
</header>
2016-08-18 18:22:57 -05:00
2017-03-20 10:57:50 -05:00
<%= render partial: "admin/nav" if current_user %>
2016-08-18 18:22:57 -05:00
2017-03-20 10:57:50 -05:00
<%= render partial: "shared/generic_flash" %>
<%= yield %>
2016-08-18 18:22:57 -05:00
<footer>
2017-03-20 10:57:50 -05:00
<div><%= image_tag("perficientdigital.png", alt:"Perficient Digital") %></div>
2016-08-18 18:22:57 -05:00
</footer>
<!--[if ! lte IE 8]><!-->
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
2016-09-07 17:45:22 -05:00
<%= yield :custom_javascipt %>
2016-08-18 18:22:57 -05:00
<!--<![endif]-->
</body>
</html>