admin views roughed in
This commit is contained in:
46
app/views/layouts/admin.html.erb
Normal file
46
app/views/layouts/admin.html.erb
Normal file
@ -0,0 +1,46 @@
|
||||
<!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>
|
||||
|
||||
<%= yield %>
|
||||
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<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' %>
|
||||
<!--<![endif]-->
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user