Adds html5shiv; removes Bitters; IE conditional comments

This commit is contained in:
Jennifer Siegfried
2016-08-12 16:04:09 -06:00
parent 2ed89e14e4
commit 114450dd08
6 changed files with 25 additions and 11 deletions

View File

@ -7,7 +7,15 @@
<title><%= yield(:title) %></title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
<!--[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">
@ -17,7 +25,7 @@
<% if content_for?(:category) %>
<div>Section: <%= yield(:category) %></div>
<% else %>
<div>Perficient Digital Skills Assessment</div>
<div>Skills Assessment Test</div>
<% end %>
</div>
</header>
@ -35,6 +43,10 @@
</div>
<%= render partial: 'layouts/footer' %>
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
<!--[if ! lte IE 8]><!-->
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
<!--<![endif]-->
</body>
</html>