view app/views/layouts/application.html.erb @ 150:88f957e0352b

No need for csrf protection Because there's no cookies/session to be protected.
author Edho Arief <edho@myconan.net>
date Mon, 26 Nov 2012 21:52:43 +0700
parents 113ee07f1871
children e043da06b85f
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" %>
  </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>.
             <%= link_to 'Donate', 'https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=edho%40myconan%2enet&lc=ID&item_name=Zeropaste%20development&currency_code=USD&bn=PP%2dDonationsBF%3abtn_subscribe_LG%2egif%3aNonHosted' %>.
            </p>
          </div>
        </div>
      </div>
    </div>

  </body>
</html>