You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
264 B
7 lines
264 B
<%# locals: (id:, title:) %>
|
|
<dialog id="<%= id %>" class="modal">
|
|
<div class="modal-box bg-base-200">
|
|
<h3 class="text-lg font-bold" data-dialog-title><%= title %></h3>
|
|
<div class="modal-content" data-dialog-content><%= yield %></div>
|
|
</div>
|
|
</dialog>
|