Sha256: 087067c4e4eb0584d15e403ca8f185b4310bfcae1ae4560a6cfa68b1e0d3a3fc

Contents?: true

Size: 1.63 KB

Versions: 4

Compression:

Stored size: 1.63 KB

Contents

<!DOCTYPE html>
<html>
  <head>
    <title>Qwerty Administration</title>
    <%= stylesheet_link_tag    "qwerty_admin/base" %>
    <link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css">
    <%= javascript_include_tag "application" %>
    <%= javascript_include_tag 'http://twitter.github.com/bootstrap/1.3.0/bootstrap-alerts.js' %>
    <%= csrf_meta_tags %>
    <style type="text/css">
      body {
        padding-top: 60px;
      </style>
    </head>
    <body>
      <div class="topbar">
        <div class="topbar-inner">
          <div class="container-fluid">
            <a class="brand" href="#">Qwerty</a>
            <ul class="nav">
              <li class="active"><a href="<%= qwerty_admin_root_path %>">Dashboard</a></li>
              <li><a href="<%= qwerty_admin_documents_path %>">Content</a></li>
              <li><a href="<%= qwerty_admin_nodes_path %>">Sitemap</a></li>
              <li><a href="/">Homepage</a></li>
            </ul>
            <p class="pull-right"></p>
          </div>
        </div>
      </div>

      <div class="content">
        <div class='row'>
          <div class='span15 offset1'>
            <% flash.each do | key, value | %>
              <div class="alert-message fade in <%= key %>" data-alert='alert'>
                <a class="close" href="#">×</a>
                <p><%= value %></p>
              </div>
            <% end %>
            <%= yield %>
          </div>
        </div>
      </div>
      <footer>
      <p>Powered by <%= link_to 'Qwerty', 'https://github.com/krisleech/qwerty'%> <%= Qwerty::VERSION %></p>
      </footer>
    </div>
  </div>
</body>
</html>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
qwerty-0.0.7.pre app/views/layouts/qwerty_admin.html.erb
qwerty-0.0.5.pre app/views/layouts/qwerty_admin.html.erb
qwerty-0.0.4.pre app/views/layouts/qwerty_admin.html.erb
qwerty-0.0.3.pre app/views/layouts/qwerty_admin.html.erb