{% extends "admin/base.html" %} {% block title %}Profile · bragi admin{% endblock %} {% block content %}

Profile

Your public author profile. The name and bio already appear on your posts; the rest feeds the h-card / structured data delivered with your content.

{# Same rich editor as posts/pages, but with the image-library and internal-link pickers off: the bio is global (it renders on every site you publish), so there is no single site to scope those to. Bio is markdown; it is your public "about me" narrative. #} {% set editor_textarea_id = 'bio' %} {% set editor_enable_media = false %} {% set editor_enable_internal_links = false %} {% include "admin/_tiptap_editor.html" %}

Markdown. This is your public "about me" — it appears on your Profile page and under your posts.

Avatar preview

{% if github_avatar_url %} {% endif %}

{% if avatar_error %}
{{ avatar_error }}
{% endif %}

Paste an image URL, or use your Gravatar{% if github_avatar_url %} or GitHub avatar{% endif %}. Leave blank for no avatar.

Links to your own profiles (GitHub, Mastodon, LinkedIn, ...). Leave a row blank to remove it.

{% for row in rows %} {% endfor %}

{% endblock %}