Sha256: 456ff0e2a3ef9abea554ed441650a52c9a2439e86c5f9f68e07cb6d97e678fd1
Contents?: true
Size: 775 Bytes
Versions: 18
Compression:
Stored size: 775 Bytes
Contents
<% # blog.rhtml - a sample script for Ruby on Rails # # Copyright (C) 2005 Masao Mutoh # # This file is distributed under the same license as Ruby-GetText-Package. # Views are bound a textdomain which is bound in application.rb or # blog_controller.rb. # So you don't need to call bindtextdomain here. %> <html> <head> <title><%= _('GetText Sample Blog on RoR') %></title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <%= stylesheet_link_tag 'scaffold' %> <%= stylesheet_link_tag 'blog' %> </head> <body> <div class="main"> <% if flash[:notice] %> <p class="notice"><%= flash[:notice] %></p> <% end %> <%= @content_for_layout %> <div class="copyright"> Copyright (C) 2005 Masao Mutoh </div> </div> <%= show_navigation %> </body> </html>
Version data entries
18 entries across 18 versions & 1 rubygems