bridgy-fed/templates/user.html

44 wiersze
1.2 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ domain }} - Bridgy Fed{% endblock %}
{% block content %}
{% if user.has_redirects == False %}
<div class="row promo warning">
<p>Your site isn't serving the <code>.well-known</code> redirects.
<a href="/docs#redirect+these+URL+paths">Please set those up!</a>
</p>
</div>
{% endif %}
{% if user.has_hcard == False %}
<div class="row promo warning">
<p>Your site doesn't have a
<a href="https://indieweb.org/representative_h-card">representative h-card</a>.
<a href="https://indieweb.org/h-card#How">Please add one!</a>
</p>
</div>
{% endif %}
<br>
<div class="row">
<h2 style="display: inline">
<a href="https://{{ domain }}/">🌐 {{ domain }}</a>
</h2>
<h3 style="display: inline">
| <a href="/user/{{ domain }}/followers">{{ followers }} follower{% if followers != '1' %}s{% endif %}</a>
| <a href="/user/{{ domain }}/following">following {{ following }}</a>
| <a href="/user/{{ domain }}/feed">HTML</a>,
<a href="/user/{{ domain }}/feed?format=atom">Atom</a>,
<a href="/user/{{ domain }}/feed?format=rss">RSS</a> feeds
</h3>
</div>
<h3 class="row">Recent activity</h3>
{% include "activities.html" %}
{% endblock %}