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

20 lines
597 B
Plaintext
Raw Normal View History

<div class="pink-background">
<h1 style="margin-bottom: 10px">My communities</h1>
2020-04-25 08:34:36 +02:00
<% if (participating.length == 0) { %>
<p>You haven't joined any communities yet, explore some below to join</p>
<% } %>
<% participating.map(community => { %>
<a href="/mobile/communities/<%= community %>" class="link-block">
#<%= community %>
</a>
<% }) %>
<h1 style="margin-top: 40px; margin-bottom: 10px">Explore</h1>
<% communities.map(community => { %>
<a href="/mobile/communities/<%= community %>" class="link-block">
#<%= community %>
</a>
<% }) %>
2020-04-25 08:34:36 +02:00
</div>