diff --git a/templates/identity/view.html b/templates/identity/view.html
index 3638f54..d7018f5 100644
--- a/templates/identity/view.html
+++ b/templates/identity/view.html
@@ -15,30 +15,32 @@
{% block body_class %}has-banner{% endblock %}
{% block content %}
-
- {% if identity.local_image_url %}
-
- {% endif %}
+ {% if not request.htmx %}
+
+ {% if identity.local_image_url %}
+
+ {% endif %}
-
+
- {% if request.identity %}{% include "identity/_view_menu.html" %}{% endif %}
+ {% if request.identity %}{% include "identity/_view_menu.html" %}{% endif %}
- {{ identity.html_name_or_handle }}
-
- @{{ identity.handle }}
-
-
-
-
-
+ {{ identity.html_name_or_handle }}
+
+ @{{ identity.handle }}
+
+
+
+
+
+ {% endif %}
{% if inbound_block %}
@@ -46,41 +48,43 @@
{% else %}
- {% if identity.summary %}
-
- {{ identity.safe_summary }}
-
- {% endif %}
+ {% if not request.htmx %}
+ {% if identity.summary %}
+
+ {{ identity.safe_summary }}
+
+ {% endif %}
- {% if identity.metadata %}
-
- {% endif %}
+ {% if identity.metadata %}
+
+ {% endif %}
- {% if identity.local and identity.config_identity.visible_follows %}
-
- {% endif %}
+ {% if identity.local and identity.config_identity.visible_follows %}
+
+ {% endif %}
- {% if not identity.local %}
- {% if identity.outdated and not identity.name %}
-
- The system is still fetching this profile. Refresh to see updates.
-
- {% else %}
-
- This is a member of another server.
- See their original profile ➔
-
+ {% if not identity.local %}
+ {% if identity.outdated and not identity.name %}
+
+ The system is still fetching this profile. Refresh to see updates.
+
+ {% else %}
+
+ This is a member of another server.
+ See their original profile ➔
+
+ {% endif %}
{% endif %}
{% endif %}