Sha256: 4b71260d0114bb39a0c243a0562cf45142e53e9e24a68e573335fbb140fe4d97

Contents?: true

Size: 1.06 KB

Versions: 6

Compression:

Stored size: 1.06 KB

Contents

<!DOCTYPE html>
<html>
<head>
  <% if @page && @page.meta_content %>
    <title><%= @page.meta_content.meta_title %></title>
    <meta name="keywords" content="<%= @page.meta_content.meta_keywords %>" />
    <meta name="description" content="<%= @page.meta_content.meta_description %>" />
  <% else %>
    <% if content_for?(:page_title) %>
      <title><%= yield :page_title %></title>
    <% end %>
    <% if content_for(:page_keywords) %>
      <meta name="keywords" content="<%= yield :page_keywords %>" />
    <% end %>
    <% if content_for?(:page_description) %>
      <meta name="description" content="<%= yield :page_description %>" />
    <% end %>
  <% end %>
  <%= stylesheet_link_tag    "wafflemix/application", :media => "all" %>
  <%= javascript_include_tag "wafflemix/application" %>
  <%= csrf_meta_tags %>
</head>
<body>
  <%= top_nav %>
  <div class="container-fluid container">
    <%= main_subnav %>
    <div class="row-fluid">
      <div class="span12">
        <%= main_menu(@menu_items) %>
        <%= yield %>
      </div>
    </div>
  </div>
</body>
</html>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
wafflemix-0.0.6 app/views/layouts/wafflemix/example_layout.html.erb
wafflemix-0.0.5 app/views/layouts/wafflemix/example_layout.html.erb
wafflemix-0.0.4 app/views/layouts/wafflemix/example_layout.html.erb
wafflemix-0.0.3 app/views/layouts/wafflemix/example_layout.html.erb
wafflemix-0.0.2 app/views/layouts/wafflemix/example_layout.html.erb
wafflemix-0.0.1 app/views/layouts/wafflemix/example_layout.html.erb