feedless/app/views/desktop/communities/list.ejs

25 lines
709 B
Plaintext
Raw Normal View History

2020-04-21 08:41:10 +02:00
<%- include('../_header') %>
2020-04-18 09:55:55 +02:00
2020-04-26 22:02:00 +02:00
<div class="columns" style="justify-content: space-between;">
<h1 style="margin-bottom: 10px">My communities</h1>
<a href="/communities/new" class="button">New Community</a>
</div>
<% if (participating.length == 0) { %>
<p>You haven't joined any communities yet, explore some below to join</p>
<% } %>
<% participating.map(community => { %>
<a href="/communities/<%= community %>" class="link-block">
#<%= community %>
</a>
<% }) %>
<h1 style="margin-top: 40px; margin-bottom: 10px">Explore</h1>
<% communities.map(community => { %>
<a href="/communities/<%= community %>" class="link-block">
#<%= community %>
</a>
<% }) %>
2020-04-18 09:55:55 +02:00
2020-04-21 08:41:10 +02:00
<%- include('../_footer') %>