<% if crawler_layout? %> <% content_for :title do %><%=t "about" %> - <%= SiteSetting.title %><% end %>

<%=t "js.about.title", {title: @about.title} %>

<%= @about.description %>

<%=t "js.about.our_admins" %>

<% @about.admins.each do |user| %>
<%= user.username %> <% if user.name.present? && SiteSetting.enable_names %> - <%= user.name %> <% end %>
<% end %>
<% if @about.moderators.count > 0 %>

<%=t "js.about.our_moderators" %>

<% @about.moderators.each do |user| %>
<%= user.username %> <% if user.name.present? && SiteSetting.enable_names %> - <%= user.name %> <% end %>
<% end %>
<% end %> <%- stats = About.fetch_cached_stats %>

<%=t 'js.about.stats' %>

  <%=t 'js.about.stat.all_time' %> <%=t 'js.about.stat.last_7_days' %> <%=t 'js.about.stat.last_30_days' %>
<%=t 'js.about.topic_count' %> <%= stats["topic_count"] %> <%= stats["topics_7_days"] %> <%= stats["topics_30_days"] %>
<%=t 'js.about.post_count' %> <%= stats["post_count"] %> <%= stats["posts_7_days"] %> <%= stats["posts_30_days"] %>
<%=t 'js.about.user_count' %> <%= stats["user_count"] %> <%= stats["users_7_days"] %> <%= stats["users_30_days"] %>
<%=t 'js.about.active_user_count' %> <%= stats["active_users_7_days"] %> <%= stats["active_users_30_days"] %>
<%=t 'js.about.like_count' %> <%= stats["like_count"] %> <%= stats["likes_7_days"] %> <%= stats["likes_30_days"] %>


<% end %> <% content_for :head do %> <%= raw crawlable_meta_data(title: SiteSetting.title, description: SiteSetting.site_description) %> <% end %>