Fix header duplication during infinity scroll (#483)

pull/486/head
Humberto Rocha 2023-01-30 13:24:15 -05:00 zatwierdzone przez GitHub
rodzic b9e8f19e90
commit 0f66900d9c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 57 dodań i 53 usunięć

Wyświetl plik

@ -15,30 +15,32 @@
{% block body_class %}has-banner{% endblock %} {% block body_class %}has-banner{% endblock %}
{% block content %} {% block content %}
<h1 class="identity"> {% if not request.htmx %}
{% if identity.local_image_url %} <h1 class="identity">
<img src="{{ identity.local_image_url.relative }}" class="banner"> {% if identity.local_image_url %}
{% endif %} <img src="{{ identity.local_image_url.relative }}" class="banner">
{% endif %}
<img src="{{ identity.local_icon_url.relative }}" class="icon"> <img src="{{ identity.local_icon_url.relative }}" class="icon">
{% if request.identity %}{% include "identity/_view_menu.html" %}{% endif %} {% if request.identity %}{% include "identity/_view_menu.html" %}{% endif %}
{{ identity.html_name_or_handle }} {{ identity.html_name_or_handle }}
<small> <small>
@{{ identity.handle }} @{{ identity.handle }}
<a title="Copy handle" <a title="Copy handle"
class="copy" class="copy"
tabindex="0" tabindex="0"
_="on click or keyup[key is 'Enter'] _="on click or keyup[key is 'Enter']
writeText('@{{ identity.handle }}') into the navigator's clipboard writeText('@{{ identity.handle }}') into the navigator's clipboard
then add .copied then add .copied
wait 2s wait 2s
then remove .copied"> then remove .copied">
<i class="fa-solid fa-copy"></i> <i class="fa-solid fa-copy"></i>
</a> </a>
</small> </small>
</h1> </h1>
{% endif %}
{% if inbound_block %} {% if inbound_block %}
<p class="system-note"> <p class="system-note">
@ -46,41 +48,43 @@
</p> </p>
{% else %} {% else %}
{% if identity.summary %} {% if not request.htmx %}
<div class="bio"> {% if identity.summary %}
{{ identity.safe_summary }} <div class="bio">
</div> {{ identity.safe_summary }}
{% endif %} </div>
{% endif %}
{% if identity.metadata %} {% if identity.metadata %}
<div class="identity-metadata"> <div class="identity-metadata">
{% for entry in identity.safe_metadata %} {% for entry in identity.safe_metadata %}
<div class="metadata-pair"> <div class="metadata-pair">
<span class="metadata-name">{{ entry.name }}</span> <span class="metadata-name">{{ entry.name }}</span>
<span class="metadata-value">{{ entry.value }}</span> <span class="metadata-value">{{ entry.value }}</span>
</div> </div>
{% endfor %} {% endfor %}
</div> </div>
{% endif %} {% endif %}
{% if identity.local and identity.config_identity.visible_follows %} {% if identity.local and identity.config_identity.visible_follows %}
<div class="view-options follows"> <div class="view-options follows">
<a href="{{ identity.urls.view }}" {% if not follows_page %}class="selected"{% endif %}><strong>{{ post_count }}</strong> posts</a> <a href="{{ identity.urls.view }}" {% if not follows_page %}class="selected"{% endif %}><strong>{{ post_count }}</strong> posts</a>
<a href="{{ identity.urls.following }}" {% if not inbound and follows_page %}class="selected"{% endif %}><strong>{{ following_count }}</strong> following</a> <a href="{{ identity.urls.following }}" {% if not inbound and follows_page %}class="selected"{% endif %}><strong>{{ following_count }}</strong> following</a>
<a href="{{ identity.urls.followers }}" {% if inbound and follows_page %}class="selected"{% endif %}><strong>{{ followers_count }}</strong> follower{{ followers_count|pluralize }}</a> <a href="{{ identity.urls.followers }}" {% if inbound and follows_page %}class="selected"{% endif %}><strong>{{ followers_count }}</strong> follower{{ followers_count|pluralize }}</a>
</div> </div>
{% endif %} {% endif %}
{% if not identity.local %} {% if not identity.local %}
{% if identity.outdated and not identity.name %} {% if identity.outdated and not identity.name %}
<p class="system-note"> <p class="system-note">
The system is still fetching this profile. Refresh to see updates. The system is still fetching this profile. Refresh to see updates.
</p> </p>
{% else %} {% else %}
<p class="system-note"> <p class="system-note">
This is a member of another server. This is a member of another server.
<a href="{{ identity.profile_uri|default:identity.actor_uri }}">See their original profile ➔</a> <a href="{{ identity.profile_uri|default:identity.actor_uri }}">See their original profile ➔</a>
</p> </p>
{% endif %}
{% endif %} {% endif %}
{% endif %} {% endif %}