feedless/app/views/communities/_layout.ejs

31 lines
821 B
Plaintext
Raw Normal View History

2020-04-21 09:12:24 +02:00
<%- include('../_header', { main_class: "screen-center" }) %>
<style>
main {
max-width: none;
margin: 0 auto;
}
</style>
2020-04-21 23:13:55 +02:00
<div style="background: #9b5f5f; padding: 50px; border-radius: 5px 5px 0 0">
2020-04-21 09:12:24 +02:00
<div style="max-width: 1200px; margin: 0 auto">
2020-04-21 23:13:55 +02:00
<h1 style="font-size: 60px">
<a href="/communities/<%= community.name %>" style="color: #FFF; text-decoration: none;">
#<%= community.name %>
</a>
</h1>
2020-04-21 09:12:24 +02:00
</div>
</div>
<div style="max-width: 1200px; margin: 0 auto; border-radius: 0 0 5px 5px">
<div class="columns">
<div class="friends-communities" style="border-radius: 0">
<h2>Members</h2>
<%- include('../_friends', { friends: community.members }) %>
</div>
<div class="wall">
<%- body %>
</div>
</div>
</div>
<%- include('../_footer') %>