rDrama/files/templates/expanded_image_modal.html

17 lines
1.0 KiB
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
<div class="modal desktop-expanded-image-modal" id="expandImageModal" tabindex="-1" role="dialog" aria-labelledby="expandImageModalTitle" aria-hidden="true">
2022-01-16 06:28:15 +00:00
<div class="modal-dialog modal-xl modal-dialog-centered mx-auto expandedimage" style="max-width:80%!important" role="document">
2021-12-17 22:46:09 +00:00
<div class="modal-content bg-transparent shadow-none">
2021-10-15 14:08:27 +00:00
<div class="modal-body text-center p-0">
<div class="d-inline-block position-relative">
2022-01-02 15:09:28 +00:00
<a href="/" rel="nofollow noopener noreferrer" target="_blank" id="desktop-expanded-image-wrap-link">
2021-12-21 15:07:28 +00:00
<img loading="lazy" alt="expanded image" src="" class="img-fluid rounded" id="desktop-expanded-image" style="min-width: 250px;">
2021-10-15 14:08:27 +00:00
</a>
<div class="position-absolute d-flex justify-content-between align-items-center w-100 mt-1">
2022-01-02 15:09:28 +00:00
<a href="/" rel="nofollow noopener noreferrer" target="_blank" class="text-gray-500 font-weight-bold text-left" id="desktop-expanded-image-link">View original</a>
2021-10-15 14:08:27 +00:00
</div>
</div>
</div>
</div>
</div>
2022-02-22 10:09:34 +00:00
</div>