summaryrefslogtreecommitdiff
path: root/app/views/layouts/_footer.html.erb
blob: 23da8221d586d42f82cc775b0e1bb3fd105cbe69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<% users = User.seen(2.minutes) %>
<div id="footer">
  <div id="online-users">
    <p>Users seen within the last two minutes: <%= users.size %></p>
    <% users.each do |u| %>
      <%= render partial: "users/username", locals: { user: u } %>
    <% end %>
  </div>
  <div class="note">
    <%= link_to "DMCA", dmca_path %> |
    <%= link_to "https://github.com/RedstonerServer", title: "Redstoner on GitHub" do %>
      GitHub <%=image_tag("github.png") %>
    <% end %> |
    <%= link_to "https://twitter.com/RedstonerServer", title: "Redstoner on Twitter" do %>
      Twitter <%= image_tag("twitter.png") %>
    <% end %> |
    <%= link_to "https://mstdn.io/@RedstonerServer", title: "Redstoner on Mastodon" do %>
      Mastodon <%= image_tag("mastodon.png") %>
    <% end %> |
    <%= link_to "https://discord.gg/QjfcPEJ", title: "Redstoner's Official Discord" do %>
      Discord <%= image_tag("discord.png") %>
    <% end %>
  </div>
</div>