microblog.pub/templates/header.html

41 lines
1.8 KiB
HTML
Raw Normal View History

2019-09-08 03:56:46 -05:00
<header id="header">
2018-05-18 13:41:41 -05:00
<div class="h-card p-author">
<data class="u-photo" value="{{ config.ME.icon.url }}"></data>
2018-05-18 13:41:41 -05:00
<a href="{{ config.ID }}" class="u-url u-uid no-hover title">
<span style="font-size:1.1em;">{{ config.NAME }}</span>
<span style="font-size:0.85em;" class="subtitle-username">@<span class="gold p-name">{{ config.USERNAME }}</span>@<span class="gold">{{ config.DOMAIN }}</span>
{% if not session.logged_in %}<small><a class="remote-follow-button" href="/remote_follow">Remote follow</a></small>{% endif %}
2018-05-18 13:41:41 -05:00
</a>
<div class="p-note summary">
{{ config.SUMMARY | safe }}
2019-09-08 09:55:24 -05:00
{% if config.PROFILE_METADATA %}
<dl>
{% for item in config.ME.attachment %}
{% if item.type == "PropertyValue" %}
<dt>{{item.name | safe }}</dt><dd>{{ item.value | safe }}</dd>
{% endif %}
{% endfor %}
</dl>
{% endif %}
</div>
2018-05-18 13:41:41 -05:00
</div>
2018-05-18 13:41:41 -05:00
<div class="menu">
<ul>
2018-06-25 16:56:29 -05:00
<li><a href="/" {% if request.path == "/" %}class="selected"{% endif %}>Notes <small class="badge">{{ notes_count }}</small></a></li>
2019-07-12 17:38:51 -05:00
{% if session.logged_in %}<li><a href="/all" {% if request.path == url_for("all") %}class="selected"{% endif %}>All <small class="badge">{{ with_replies_count }}</small></a></li>
2018-06-25 16:56:29 -05:00
<li><a href="/liked" {% if request.path == "/liked" %}class="selected"{% endif %}>Liked <small class="badge">{{ liked_count }}</small></a></li>
2019-08-13 17:06:58 -05:00
{% endif %}
2018-06-25 16:56:29 -05:00
<li><a href="/followers"{% if request.path == "/followers" %} class="selected" {% endif %}>Followers <small class="badge">{{ followers_count }}</small></a></li>
2018-07-17 17:11:05 -05:00
{% if not config.HIDE_FOLLOWING or session.logged_in %}<li id="menu-item-following"><a href="/following"{% if request.path == "/following" %} class="selected" {% endif %}>Following <small class="badge">{{ following_count }}</small></a></li>{% endif %}
2018-05-18 13:41:41 -05:00
<!-- <li><a href="/about"{% if request.path == "/about" %} class="selected" {% endif %}>/about</a></li>
-->
</ul>
</div>
2019-09-08 03:34:34 -05:00
</header>