2022-06-22 13:11:22 -05:00
|
|
|
<header id="header">
|
|
|
|
|
|
|
|
<div class="h-card p-author">
|
|
|
|
<data class="u-photo" value="{{ local_actor.icon_url }}"></data>
|
|
|
|
<a href="{{ local_actor.url }}" class="u-url u-uid no-hover title">
|
2022-07-01 12:35:34 -05:00
|
|
|
<span class="name">{{ local_actor.name }}</span>
|
|
|
|
<span class="p-name handle">{{ local_actor.handle }}</span>
|
2022-06-22 13:11:22 -05:00
|
|
|
</a>
|
|
|
|
|
|
|
|
<div class="p-note summary">
|
|
|
|
{{ local_actor.summary | safe }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{%- macro header_link(url, text) -%}
|
2022-06-25 03:20:07 -05:00
|
|
|
{% set url_for = request.app.router.url_path_for(url) %}
|
|
|
|
<a href="{{ url_for }}" {% if request.url.path == url_for %}class="active"{% endif %}>{{ text }}</a>
|
2022-06-22 13:11:22 -05:00
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
<div style="margin:30px 0;">
|
|
|
|
<nav class="flexbox">
|
|
|
|
<ul>
|
2022-06-26 03:28:21 -05:00
|
|
|
<li>{{ header_link("index", "Notes") }}</li>
|
2022-07-01 12:35:34 -05:00
|
|
|
<li>{{ header_link("followers", "Followers") }} <span class="counter">{{ followers_count }}</span></li>
|
|
|
|
<li>{{ header_link("following", "Following") }} <span class="counter">{{ following_count }}</span></li>
|
2022-06-26 11:07:55 -05:00
|
|
|
<li>{{ header_link("get_remote_follow", "Remote follow") }}</li>
|
2022-06-22 13:11:22 -05:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
|
|
</header>
|