2016-07-26 11:59:23 -05:00
|
|
|
<!DOCTYPE html>
|
2016-07-27 22:16:12 -05:00
|
|
|
<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">
|
2016-07-26 11:59:23 -05:00
|
|
|
<%= csrf_meta_tags %>
|
|
|
|
|
2016-07-27 22:16:12 -05:00
|
|
|
<title><%= yield(:title) %></title>
|
2016-07-26 11:59:23 -05:00
|
|
|
|
2016-08-12 17:04:09 -05:00
|
|
|
<!--[if ! lte IE 8]><!-->
|
|
|
|
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
|
|
|
|
<!--<![endif]-->
|
|
|
|
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<%= javascript_include_tag 'ie9' %>
|
|
|
|
<![endif]-->
|
|
|
|
|
|
|
|
|
2016-07-27 22:16:12 -05:00
|
|
|
</head>
|
2016-07-26 11:59:23 -05:00
|
|
|
<body>
|
2016-07-27 22:16:12 -05:00
|
|
|
<div class="layout">
|
|
|
|
|
2016-08-08 12:03:11 -05:00
|
|
|
<header <%= "class=no-progressbar" unless content_for?(:progress) %>>
|
2016-08-08 11:56:42 -05:00
|
|
|
<div class="page-title slash-left">
|
|
|
|
<% if content_for?(:category) %>
|
2016-07-27 22:16:12 -05:00
|
|
|
<div>Section: <%= yield(:category) %></div>
|
2016-08-08 11:56:42 -05:00
|
|
|
<% else %>
|
2016-08-12 17:04:09 -05:00
|
|
|
<div>Skills Assessment Test</div>
|
2016-08-08 11:56:42 -05:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</header>
|
2016-07-27 22:16:12 -05:00
|
|
|
|
2016-08-08 11:56:42 -05:00
|
|
|
<%= yield %>
|
2016-07-27 22:16:12 -05:00
|
|
|
|
2016-08-08 11:56:42 -05:00
|
|
|
<% if content_for?(:progress) %>
|
|
|
|
<div class="progress ignore-margin">
|
|
|
|
<div class="progress-bar" role="progressbar" aria-valuenow="<%= yield :progress %>"
|
|
|
|
aria-valuemin="0" aria-valuemax="100" style="width: <%= yield :progress %>%">
|
|
|
|
<span><%= yield :progress %>%</span>
|
2016-07-27 22:16:12 -05:00
|
|
|
</div>
|
2016-08-08 11:56:42 -05:00
|
|
|
</div>
|
2016-07-27 22:16:12 -05:00
|
|
|
<% end %>
|
2016-07-28 08:22:05 -05:00
|
|
|
|
2016-07-27 22:16:12 -05:00
|
|
|
</div>
|
|
|
|
<%= render partial: 'layouts/footer' %>
|
2016-08-12 17:04:09 -05:00
|
|
|
|
|
|
|
<!--[if ! lte IE 8]><!-->
|
|
|
|
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
|
|
|
|
<!--<![endif]-->
|
|
|
|
|
2016-07-26 11:59:23 -05:00
|
|
|
</body>
|
|
|
|
</html>
|