Files
linkding/bookmarks/templates/shared/modal_header.html
2026-01-04 09:39:42 +01:00

13 lines
350 B
HTML

{% load static %}
<div class="modal-header">
<h2 class="title">{{ title }}</h2>
<button type="button"
class="btn btn-noborder close"
aria-label="Close dialog"
data-close-modal>
<svg width="24" height="24">
<use href="{% static 'icons.svg' %}?v={{ app_version }}#close"></use>
</svg>
</button>
</div>