Sha256: c601e39840ab2c7fbab0f7f3aed04e68c4dacdf6d5142cd61b4694145ee4f759

Contents?: true

Size: 1.8 KB

Versions: 3

Compression:

Stored size: 1.8 KB

Contents

<!DOCTYPE html>
<html>
  <head>
    <meta name="i18n-locale" content="<%= I18n.locale %>">
    <meta charset="utf-8">
    <%= csrf_meta_tag %>

    <title><%= Iqvoc.title || t("txt.common.iqvoc_title") %></title>
	  <%= stylesheet_link_tag "manifest" %>
	  <!--[if lt IE 8]>
    <%= stylesheet_link_tag "blueprint/ie", :media => "screen, projection" %>
    <![endif]-->
		<!--[if (gte IE 6)&(lte IE 8)]>
		<%= stylesheet_link_tag "iqvoc/ie_fixes" %>
		<![endif]-->

    <%= yield :head %>
  </head>
  <body class="<%= "concept" unless @concept.nil? %>">

    <%= render :partial => 'layouts/controls' %>

    <div class="container">
      <div id="header" class="span-24 last">
        <%= render :partial => 'layouts/header' %>
        <%= render :partial => 'layouts/navigation' %>
      </div>

      <div id="navi_sub" class="span-24 last">
        <%= yield :sub_navigation %>
      </div>

      <div id="content" class="span-24 last">
        <% if flash[:notice] %>
          <p class="flash_notice"><%= flash[:notice] %></p>
        <% end %>
        <% if flash[:error] %>
          <p class="flash_error"><%= flash[:error] %></p>
        <% end %>
        <%= yield %>
      </div>

      <div id="footer" class="span-24 last">
        <div id="footer_box">
          <% if current_user %>
            <%= t('txt.common.welcome', :user_name => current_user.name) %> (<%= current_user.role.humanize %>) | <%= link_to t("txt.views.layouts.application.logout"), user_session_path, :method => :delete %>
          <% else %>
            <%= link_to t("txt.views.layouts.application.login"), new_user_session_path() %>
          <% end %>
          <a href="http://www.w3.org/2001/sw/" id="w3c_link"></a>
        </div>
      </div>
    </div>
    <%= javascript_include_tag "manifest" %>
    <%= yield :scripts %>
  </body>
</html>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
iqvoc-3.3.4 app/views/layouts/application.html.erb
iqvoc-3.3.3 app/views/layouts/application.html.erb
iqvoc-3.3.2 app/views/layouts/application.html.erb