view app/views/layouts/application.html.erb @ 389:433bc70e1781

Style up Pastes#show a bit.
author nanaya <me@myconan.net>
date Sun, 07 Jun 2015 13:05:31 +0900
parents bf9e350f8a2b
children 91dabc034389
line wrap: on
line source

<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
    <title><%= html_title %></title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <%= stylesheet_link_tag    "application", :media => "all" %>
  </head>
  <body>
    <header>
      <h1><%= content_for :title %></h1>
      <p class="credit">
       Zeropaste.
       <a href="https://bitbucket.org/nanaya1/zeropaste">Source</a>.
       <%= link_to 'Donate', 'https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=me%40myconan%2enet&lc=ID&item_name=Zeropaste%20development&currency_code=USD&bn=PP%2dDonationsBF%3abtn_subscribe_LG%2egif%3aNonHosted' %>.
      </p>
    </header>

    <%= render "layouts/alerts" %>

    <main>
      <%= yield %>
    </main>

    <%= javascript_include_tag "application" %>
  </body>
</html>