Sha256: 42bd2380fc119adce949514e14cb3129b978b3abfa9e6a9d118990acd5a454da

Contents?: true

Size: 1.81 KB

Versions: 2

Compression:

Stored size: 1.81 KB

Contents

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Moxie</title>

    <link href="<%= path_prefix %>/css/bootstrap.min.css" rel="stylesheet">
    <style type="text/css">
      body {
        padding-top: 60px;
      }
      #editor {
        width: 935px;
        height: 400px;
        position:relative;
      }
      .right { float:right; }
      .well:after{ clear:both;}
      .well:before, .well:after {
        display: table;
        content: "";
        zoom: 1;
      }
      .well.simple-well{
        border:0;
        background:#fff;
        box-shadow:none;
      }
      .thumb{
        margin-bottom:-16px;
      }
      h1 em { font-weight:bold;  color:red; font-style:normal;}
    </style>
  </head>

  <body>
    <div class="container">
      <div class="row">
        <div class="span16">
          <h1>moxy <em><%= @page %></em></h1>
          <br/>
          <% if flash.has? :error %>
            <div data-alert class="alert-message error">
              <a class="close" href="#">×</a>
              <p><%= flash[:error] %></p>
            </div>
          <% end %>

          <% if flash.has? :notice %>
            <div data-alert class="alert-message success">
              <a class="close" href="#">×</a>
              <p><%= flash[:notice] %></p>
            </div>
          <% end %>
        </div>
      </div>
    
      <%= yield %>
      <footer>
        <p><img class="thumb" src="<%= path_prefix %>/img/moxypixy.png"/> <a href="https://github.com/jondot/moxy">moxy</a> &copy; <a href="http://gplus.to/dotan">Dotan Nahum</a> <a href="http://twitter.com/jondot">(@jondot)</a> 2011. Code is MIT licensed.</p>
      </footer>

    </div> <!-- /container -->
    <script src="<%= path_prefix %>/js/bootstrap-alerts.js" type="text/javascript" charset="utf-8"></script>

  </body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
moxy-0.0.2 views/layout.erb
moxy-0.0.1 views/layout.erb