2018-05-18 13:41:41 -05:00
< div id = "header" >
2018-07-20 17:04:15 -05:00
2018-05-18 13:41:41 -05:00
< div class = "h-card p-author" >
2018-06-25 16:45:43 -05:00
< 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 >
2018-07-20 17:04:15 -05:00
{% 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 >
2018-07-20 17:04:15 -05:00
{% if not request.path.startswith('/admin') %}
2018-06-25 16:45:43 -05:00
< div class = "p-note summary" >
{{ config.SUMMARY | safe }}
< / div >
2018-07-20 17:04:15 -05:00
{% endif %}
2018-05-18 13:41:41 -05:00
< / div >
2018-07-20 17:04:15 -05:00
{% if not request.path.startswith('/admin') %}
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 >
2018-07-17 17:06:42 -05:00
{% if session.logged_in %}< li > < a href = "/with_replies" { % if request . path = = " / with_replies " % } class = "selected" { % endif % } > With replies < small class = "badge" > {{ with_replies_count }}< / small > < / a > < / li >
2018-07-17 17:11:05 -05:00
{% endif %}
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 >
< 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 >
2018-07-20 17:04:15 -05:00
{% endif %}
2018-05-18 13:41:41 -05:00
< / div >