--- /dev/null
+
+
+
+class Communities
+
+ def self.local_chapters
+ array_string_ = ["Local Chapter 1", "Local Chapter 2", "Local Chapter 3", "Another one", "And Another"]
+ end
+end
<h2><%= t ".local_chapters.title", :locale => @locale %></h2>
<p><%= t ".local_chapters.about_text", :locale => @locale %></p>
<p><%= t ".local_chapters.list_text", :locale => @locale %></p>
+ <ul>
+ <% @local_chapters.each do |chapter| %>
+ <li><%= chapter %></li>
+ <% end %>
+ </ul>
<h2><%= t ".other_groups.title", :locale => @locale %></h2>
<p><%= t ".other_groups.about_html", :locale => @locale %></p>
<% end %>
\ No newline at end of file