Sha256: ea459c69af4b803b2679e1ee4a9c870044757b2b86903ed483d73111f6309989

Contents?: true

Size: 679 Bytes

Versions: 4

Compression:

Stored size: 679 Bytes

Contents

<%
# list.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.
%>

<h1><%= _("GetText Sample Blog on RoR") %></h1>
<p style="text-align:right">
<%= link_to _('New article'), :action => 'new' %>
</p>
<% if @articles.size == 0 %>
  <p><%= _("No articles were found.") %></p>
<% else %>
  <%
     @articles.each_with_index do |article, index| 
  %>
       <%= show_article(article) %>
  <%
       break if index > 1
     end
  %>
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gettext-1.10.0-mswin32 samples/rails/app/views/blog/list.rhtml
gettext-1.9.0-mswin32 samples/rails/app/views/blog/list.rhtml
gettext-1.10.0 samples/rails/app/views/blog/list.rhtml
gettext-1.9.0 samples/rails/app/views/blog/list.rhtml