rDrama/files/templates/popover.html

56 lines
2.0 KiB
HTML
Raw Normal View History

2022-09-03 23:42:59 +00:00
<div style="display:none" id="popover">
2023-01-20 07:14:59 +00:00
<div class="popover-user-profile">
2023-06-30 17:45:51 +00:00
<img loading="lazy" class="pop-banner w-100 h-200 object-cover">
2022-09-03 23:42:59 +00:00
<div class="d-flex align-items-end px-3 mt-n6 mb-3">
2022-09-06 07:03:14 +00:00
<div class="profile-pic-75-wrapper">
2022-10-29 21:42:30 +00:00
<img loading="lazy" class="pop-picture profile-pic-75">
2022-09-06 07:03:14 +00:00
<img class="pop-hat profile-pic-75-hat hat" loading="lazy">
2022-09-04 00:25:00 +00:00
</div>
2022-09-03 23:42:59 +00:00
<div class="px-3 text-truncate">
2023-03-11 10:24:17 +00:00
<h5 class="pop-username text-truncate text-black mb-0 pb-1 mt-4 pt-2"></h5>
2022-11-11 15:22:10 +00:00
<span class="text-black">Joined <span class="pop-created-date"></span></span>
2023-03-11 10:24:17 +00:00
<div class="text-black">User ID: <span class="pop-id"></span></div>
2023-06-29 21:44:15 +00:00
<div class="text-black pop-original-usernames breakable"></div>
2022-09-03 23:42:59 +00:00
</div>
</div>
{% if FEATURES['USERS_PROFILE_BODYTEXT'] -%}
2022-11-12 10:46:51 +00:00
<div class="px-3 popover-bio-div y-scroll">
<span class="pop-bio popover-bio text-black"></span>
</div>
2022-09-03 23:42:59 +00:00
{%- endif %}
{% if FEATURES['BADGES'] -%}
<div class="popover-badges-div y-scroll">
<div class="pop-badges ml-3 mr-3 my-2">
2022-11-12 10:46:51 +00:00
</div>
</div>
{%- endif %}
2022-09-03 23:42:59 +00:00
<div class="border-top d-flex align-items-center p-3 gap-3 smol">
<span>
2023-08-06 07:17:56 +00:00
<strong class="pop-postcount text-black unbreakable"></strong>
<span class="text-black unbreakable">posts</span>
2022-09-03 23:42:59 +00:00
</span>
<span class="ml-3">
2023-08-06 07:17:56 +00:00
<strong class="pop-commentcount text-black unbreakable"></strong>
<span class="text-black unbreakable">comments</span>
2022-09-03 23:42:59 +00:00
</span>
<span class="ml-3">
2023-08-06 07:17:56 +00:00
<strong class="pop-coins text-black unbreakable"></strong>
<span class="text-black unbreakable">coins</span>
2022-09-04 00:25:00 +00:00
</span>
2023-04-24 13:39:25 +00:00
<span class="ml-3">
2023-08-06 07:17:56 +00:00
<strong class="pop-marseybux text-black unbreakable"></strong>
<span class="text-black unbreakable">marseybux</span>
2023-04-24 13:39:25 +00:00
</span>
<a href="/" {% if v and v.newtab %}data-target="t" target="_blank"{% endif %} class="pop-view_more ml-auto text-decoration-none">
2023-07-01 01:29:40 +00:00
<span class="pl-3 pr-1 pr-md-3 py-3 unbreakable">
View <i class="fas fa-arrow-right fa-sm pl-1"></i>
</span>
2022-09-03 23:42:59 +00:00
</a>
</div>
</div>
2022-09-04 00:25:00 +00:00
</div>