Starbound server is <%= @status %>

Address Port Version <%= @status.capitalize %> For
<%= @address %> <%= @port %> <%= @version %> <% if @last_status_change %> <%= time_ago_in_words(@last_status_change) %> <% end %>
<% if @online_players.length > 0 %>

Online Players

<% @online_players.each do |player| %> <% end %>
Name Online For
<%= player[:name] %> <% if player[:last_connect] %> <%= time_ago_in_words(player[:last_connect]) %> <% end %>
<% end %> <% if @active_worlds.length > 0 %>

Active Worlds

<% @active_worlds.each do |world| %> <% end %>
Coordinates Loaded For
<%= world[:coords] %> <% if world[:last_load] %> <%= time_ago_in_words(world[:last_load]) %> <% end %>
<% end %> <% if @offline_players.length > 0 %>

Offline Players

<% @offline_players.each do |player| %> <% end %>
Name Last Seen
<%= player[:name] %> <% if player[:last_seen] %> <%= time_ago_in_words(player[:last_seen]) %> ago <% end %>
<% end %>
<% @chat.last(50).reverse.each do |chat| %> <% end %>
Chat
<%= chat[:name] %> <%= chat[:text] %>