Sha256: 16a63bb9efc4292f5c72326d933866ca69c6f058a0c0fa03e968f1731d3bee28

Contents?: true

Size: 1.44 KB

Versions: 5

Compression:

Stored size: 1.44 KB

Contents

<!DOCTYPE html>
<html>
<head>
  <title><%= options.app_name %></title>
  <%%= stylesheet_link_tag "web-app-theme/base", "web-app-theme/themes/<%= options.theme %>/style", "web-app-theme/override", :cache => true %>
  <%%= javascript_include_tag :defaults, :cache => true %>
  <%%= csrf_meta_tag %>
</head>
<body>
  <div id="container">
    <div id="header">
      <h1><a href="/"><%= options.app_name %></a></h1>
      <div id="user-navigation">
        <ul class="wat-cf">
          <li><a href="#"><%%= t("web-app-theme.profile", :default => "Profile") %></a></li>
          <li><a href="#"><%%= t("web-app-theme.settings", :default => "Settings") %></a></li>
          <li><a href="/logout" class="logout"><%%= t("web-app-theme.logout", :default => "Logout") %></a></li>
        </ul>
      </div>
      <div id="main-navigation">
        <ul class="wat-cf"></ul>
      </div>
    </div>    
    <div id="wrapper" class="wat-cf">
      <div class="flash">
        <%% flash.each do |type, message| -%>
          <div class="message <%%= type %>">
            <p><%%= message %></p>
          </div>
        <%% end -%>
      </div>
      <div id="main">
        <%%= yield %>
        <div id="footer">
          <div class="block">
            <p>Copyright &copy; <%%= Time.now.year %> <%= options.app_name %>.</p>
          </div>      
        </div>
      </div>
      <div id="sidebar">
        <%%= yield :sidebar %>
      </div>
    </div>    
  </div>
</body>
</html>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
web-app-theme-0.7.0 lib/generators/web_app_theme/theme/templates/layout_admin.html.erb
web-app-theme-0.6.3 lib/generators/web_app_theme/theme/templates/layout_admin.html.erb
web-app-theme-0.6.2 lib/generators/web_app_theme/theme/templates/layout_admin.html.erb
web-app-theme-0.6.1 lib/generators/web_app_theme/theme/templates/layout_admin.html.erb
web-app-theme-0.6.0 lib/generators/web_app_theme/theme/templates/layout_admin.html.erb