bridgy-fed/templates/_followers.html

29 wiersze
812 B
HTML
Czysty Zwykły widok Historia

<div class="row">
2022-11-21 04:50:00 +00:00
<ul class="user-items">
2022-11-13 07:19:09 +00:00
{% for f in followers %}
2022-11-21 04:50:00 +00:00
<li class="row">
<a class="follower col-xs-10 col-sm-6 col-lg-6" href="{{ f.url }}">
2022-11-22 00:08:00 +00:00
{% if f.picture %}
<img class="profile u-photo" src="{{ f.picture }}" width="48px">
{% endif %}
{{ f.name or '' }}
2022-11-22 00:08:00 +00:00
{{ f.handle }}
2022-11-13 07:19:09 +00:00
</a>
{% if page_name == 'following' %}
<form method="post" action="/unfollow/start" class="col-xs-2 col-sm-1 col-lg-1">
<input type="hidden" name="me" value="https://{{ domain }}/" />
<input type="hidden" name="key" value="{{ f.key.id() }}" />
<input type="submit" title="Unfollow (requires IndieAuth)" value="✖"
class="btn delete-website" />
</form>
{% endif %}
2022-11-21 04:50:00 +00:00
</li>
{% else %}
2022-11-21 04:50:00 +00:00
None yet. Check back soon!
{% endfor %}
2022-11-21 04:50:00 +00:00
</ul>
{% include "paging.html" %}