bridgy-fed/templates/_followers.html

21 wiersze
410 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">
2022-11-22 00:08:00 +00:00
<a class="follower col-xs-12 col-sm-6 col-lg-6" href="{{ f.url }}">
{% if f.picture %}
<img class="profile u-photo" src="{{ f.picture }}" width="48px">
{% endif %}
{{ f.name or '' }}
{{ f.handle }}
2022-11-13 07:19:09 +00:00
</a>
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" %}