view app/views/layouts/application.html.erb @ 139:255f8f9455a0

Simplified base layout.
author Edho Arief <edho@myconan.net>
date Mon, 12 Nov 2012 17:49:14 +0700
parents d100218b96c9
children 113ee07f1871
line wrap: on
line source

<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
    <title><%= html_title %></title>
    <%= stylesheet_link_tag    "application", :media => "all" %>
    <%= javascript_include_tag "application" %>
    <% unless @skip_csrf %>
      <%= csrf_meta_tags %>
    <% end %>
  </head>
  <body>

    <div class="container-fluid">
      <div class="row-fluid">
        <div class="span12">

          <%= yield %>

          <div class="footer">
            <hr />
            <p>Zeropaste &copy; edogawaconan 2012. <a href="https://bitbucket.org/edogawaconan/zeropaste">Source</a>.</p>
          </div>
        </div>
      </div>
    </div>

  </body>
</html>