Sha256: 498dd9ce40e7a68d3ed801f711889e80a289fc5be99a5562d7a815214c45fc01
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 KB
Contents
<!DOCTYPE html> <html lang="<%= I18n.locale %>"> <head> <meta charset="utf-8"> <%= csrf_meta_tag %> <title><%= Iqvoc.title || t("txt.common.iqvoc_title") %></title> <!-- HTML5 shim, for IE6-8 support of HTML elements --> <!--[if lt IE 9]> <%= javascript_include_tag "html5" %> <![endif]--> <%= stylesheet_link_tag "manifest" %> <!--[if lte IE 8]> <%= stylesheet_link_tag "iqvoc/ie_fixes" %> <![endif]--> <%= yield :head %> </head> <body> <%= render 'layouts/navigation' %> <div class="container"> <div class="row"> <div class="span9" id="content"> <%= yield :page_header %> <% flash.each do |type, msg| %> <%= alert(type) { msg } %> <% end %> <%= yield %> </div> <div class="span3" id="sidebar"> <%= yield :sidebar %> </div> </div> </div> <script> // load JSON polyfill only if necessary if(typeof JSON === "undefined") { document.write('<%= javascript_include_tag("json2").sub("</", "<\\/").html_safe %>'); } </script> <%= javascript_include_tag "manifest" %> <%= yield :scripts %> </body> </html>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
iqvoc-4.0.2 | app/views/layouts/application.html.erb |
iqvoc-4.0.1 | app/views/layouts/application.html.erb |
iqvoc-4.0.0 | app/views/layouts/application.html.erb |