X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/87918595da1e1fad2ddd7aa62f9fc537dff657ff..HEAD:/app/views/site/help.html.erb diff --git a/app/views/site/help.html.erb b/app/views/site/help.html.erb index dff2108ca..b180eb1a5 100644 --- a/app/views/site/help.html.erb +++ b/app/views/site/help.html.erb @@ -1,18 +1,25 @@ <% content_for :heading do %> -

<%= t "help_page.title" %>

+

<%= t ".title" %>

<% end %> -

<%= t "help_page.introduction" %>

+

<%= t ".introduction" %>

-<% ['welcome', 'beginners_guide', 'help', 'mailing_lists', 'forums', 'irc', 'switch2osm', 'wiki'].each do |site| %> - <% unless site == 'welcome' && !current_user %> -
-

- - <%= t "help_page.#{site}.title" %> - -

-

<%= t "help_page.#{site}.description" %>

-
+<% sites = %w[beginners_guide community mailing_lists irc switch2osm welcomemat wiki] %> +<% sites.prepend("welcome") if current_user %> + +
+ <% sites.each do |site| %> +
+
+
+ + <%= t ".#{site}.title" %> + +
+
+

<%= t ".#{site}.description" %>

+
+
+
<% end %> -<% end %> +