{{ local_actor.name }} {{ local_actor.handle }}
{{ local_actor.summary | safe }} {% if TAGS %}
    {% for tag in TAGS %}
  • #{{tag}}
  • {% endfor %}
{% endif %}
{% for prop in local_actor.attachments %}
{% if prop.type == "PropertyValue" %}
{{ prop.name }}
{{ prop.value | clean_html(local_actor) | safe }}
{% endif %}
{% endfor %}
{%- macro header_link(url, text) -%} {% set url_for = BASE_URL + request.app.router.url_path_for(url) %} {{ text }} {% endmacro %} {%- macro navbar_item_link(navbar_item) -%} {% set url_for = BASE_URL + navbar_item[0] %} {{ navbar_item[1] }} {% endmacro %}
    {% if NAVBAR_ITEMS.INDEX_NAVBAR_ITEM %}
  • {{ navbar_item_link(NAVBAR_ITEMS.INDEX_NAVBAR_ITEM) }}
  • {% endif %}
  • {{ header_link("index", "Notes") }}
  • {% if articles_count %}
  • {{ header_link("articles", "Articles") }}
  • {% endif %} {% if not HIDES_FOLLOWERS %}
  • {{ header_link("followers", "Followers") }} {{ followers_count }}
  • {% endif %} {% if not HIDES_FOLLOWING %}
  • {{ header_link("following", "Following") }} {{ following_count }}
  • {% endif %}
  • {{ header_link("serve_contact", "Contact") }}
  • {{ header_link("get_remote_follow", "Remote follow") }}
  • {% for navbar_item in NAVBAR_ITEMS.EXTRA_NAVBAR_ITEMS %} {{ navbar_item_link(navbar_item) }} {% endfor %}