2016-08-18 18:22:57 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" class="no-js">
|
|
|
|
<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]-->
|
|
|
|
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<%= javascript_include_tag 'ie9' %>
|
|
|
|
<![endif]-->
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="layout">
|
|
|
|
|
|
|
|
<header class="no-progressbar">
|
|
|
|
<div class="page-title slash-left">
|
|
|
|
<% if content_for?(:section_title) %>
|
|
|
|
<div><%= yield(:section_title) %></div>
|
|
|
|
<% else %>
|
|
|
|
<div>Skills Assessment Admin</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
2016-08-24 12:17:00 -05:00
|
|
|
<main class="<%= content_for?(:main_class) ? yield(:main_class) : "admin_tpl" %>">
|
|
|
|
<%= render partial: "shared/generic_flash" %>
|
|
|
|
<%= yield %>
|
|
|
|
</main>
|
2016-08-18 18:22:57 -05:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer>
|
2016-08-19 16:02:18 -05:00
|
|
|
<div class="footer_title"> </div>
|
2016-08-18 18:22:57 -05:00
|
|
|
<div class="pd_logo"><%= image_tag("perficientdigital.png", alt:"Perficient Digital") %></div>
|
|
|
|
<div class="footer_yellow-bar slantleft slantright"> </div>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
<!--[if ! lte IE 8]><!-->
|
|
|
|
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
|
2016-09-07 17:45:22 -05:00
|
|
|
<%= javascript_include_tag 'admin', 'data-turbolinks-track': 'reload' %>
|
|
|
|
<%= yield :custom_javascipt %>
|
2016-08-18 18:22:57 -05:00
|
|
|
<!--<![endif]-->
|
|
|
|
</body>
|
|
|
|
</html>
|