rDrama/files/templates/popover.html

48 lines
1.6 KiB
HTML

<div style="display:none" id="popover">
<div class="popover-user-profile" role="tooltip">
<img loading="lazy" class="pop-banner w-100 h-64 object-cover">
<div class="d-flex align-items-end px-3 mt-n6 mb-3">
<div class="profile-pic-75-wrapper">
<img loading="lazy" class="pop-picture profile-pic-75">
<img class="pop-hat profile-pic-75-hat hat" loading="lazy">
</div>
<div class="px-3 text-truncate">
<h5 class="pop-username text-truncate text-black mb-1"></h5>
<span class="text-black">Joined <span class="pop-created-date"></span></span>
</div>
</div>
{% if FEATURES['USERS_PROFILE_BODYTEXT'] -%}
<div class="px-3 popover-bio-div y-scroll">
<span class="pop-bio popover-bio text-black"></span>
</div>
{%- endif %}
{% if FEATURES['BADGES'] -%}
<div class="popover-badges-div y-scroll">
<div class="pop-badges ml-3 mr-3 my-2">
</div>
</div>
{%- endif %}
<div class="border-top d-flex align-items-center p-3 gap-3 smol">
<span>
<strong class="pop-postcount text-black"></strong>
<span class="text-black">posts</span>
</span>
<span class="ml-3">
<strong class="pop-commentcount text-black"></strong>
<span class="text-black">comments</span>
</span>
<span class="ml-3">
<strong class="pop-coins text-black"></strong>
<span class="text-black">coins</span>
</span>
<a href="/" {% if v and v.newtab %}data-target="t" target="_blank"{% endif %} class="pop-view_more ml-auto text-decoration-none">
<span class="ml-3">View</span>
<i class="fas fa-arrow-right fa-sm px-1"></i>
</a>
</div>
</div>
</div>