1
0
Fork 1
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
3.5 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<title>Morsel - {{ name }}</title>
<link rel="stylesheet" href="/static/morsel.css" />
<link rel="stylesheet" href="/static/theme.css" />
</head>
<body>
{% include "logo.html" %}
{% include "nav.html" %}
<div class="feed_panel panel">
<table width="100%">
<tr>
<td width="72px" align="right"><img src="/avatar/{{bname}}" width="64px" height="64px"/></td>
<td>
<h2>{{ bname }}</h2>
<p class="extra-room">{{ bdesc }}</p>
{% if bname != name -%}
<hr/>
{% if following -%}
<a href="/u/{{bname}}?follow" class="red abtn">Unfollow</a>
{% else -%}
<a href="/u/{{bname}}?follow" class="mods abtn">Follow</a>
{% endif -%}
{% if mutual -%}
<span class="mutual">Follows you!</span>
{% endif -%}
{% endif -%}
</td>
</tr>
</table>
<table width="100%">
<tr>
<td width="33%">
<h3 class="mods">Followers</h3>
<table width="100%" class="userpage_col">
{% for follower in followers %}
<tr>
<td width="48px" align="right"><img src="/avatar/{{follower}}" width="48px" height="48px" /></td>
<td valign="middle"><a href="/u/{{follower}}" class="notsoobviouslink mods"><h4 class="mods">{{follower}}</h4></a></td>
<td valign="middle" width="32px">
{% if follower in myfollowings %}
<a href="/u/{{follower}}?follow&goto=/u/{{bname}}" class="red abtn">Unfollow</a>
{% else %}
<a href="/u/{{follower}}?follow&goto=/u/{{bname}}" class="mods abtn">Follow</a>
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</td>
<td width="33%">
<h3 class="mods">Following</h3>
<table width="100%" class="userpage_col">
{% for follow in followings %}
<tr>
<td width="48px" align="right"><img src="/avatar/{{follow}}" width="48px" height="48px" /></td>
<td valign="middle"><a href="/u/{{follow}}" class="notsoobviouslink mods"><h4 class="mods">{{follow}}</h4></a></td>
<td valign="middle" width="32px">
{% if follow in myfollowings %}
<a href="/u/{{follow}}?follow&goto=/u/{{bname}}" class="red abtn">Unfollow</a>
{% else %}
<a href="/u/{{follow}}?follow&goto=/u/{{bname}}" class="mods abtn">Follow</a>
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</td>
<td width="33%">
<h3 class="mods">Subscriptions</h3>
<table width="100%" class="userpage_col">
{% for sub in subs %}
<tr>
<td width="48px" align="right">
{% if sub in mysubs %}
<a class="subbtn remove" href="/b/{{sub}}?unsubscribe">+</a>
{% else %}
<a class="subbtn" href="/b/{{sub}}?subscribe">+</a>
{% endif %}
</td>
<td><a href="/b/{{sub}}" class="notsoobviouslink"><h4 class="mods">{{sub}}</h4></a></td>
</tr>
{% endfor %}
</table>
</td>
</tr>
</table>
<hr/>
</div>
{% include "nav.html" %}
</body>
</html>