hmc_site_source/layouts/partials/components/modals.html

47 lines
2.2 KiB
HTML

<!-- modal container -->
{{ if .Params.modals }}
<div class="modal_container z-100">
{{ range $i, $option := .Params.modals }}
{{ if .active }}
<!-- modal -->
<div id="{{ .id }}" tabindex="-1" aria-hidden="true"
class="hidden overflow-y-auto overflow-x-hidden fixed top-0 right-0 left-0 z-50 justify-center items-center w-full md:inset-0 h-[calc(100%)] max-h-full flex bg-[rgba(0,0,0,0.5)] modal-bg">
<div class="relative p-4 w-full max-w-2xl max-h-full">
<!-- Modal content -->
<div class="relative bg-white rounded-lg shadow dark:bg-[#150e31]">
<!-- Modal header -->
<div class="flex items-center justify-between p-4 md:p-5 rounded-t">
<button type="button"
class="text-gray-400 bg-transparent hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm w-8 h-8 ms-auto inline-flex justify-center items-center dark:hover:bg-gray-600 dark:hover:text-white"
data-modal-hide="{{ .id }}">
<svg class="w-3 h-3" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="m1 1 6 6m0 0 6 6M7 7l6-6M7 7l-6 6" />
</svg>
<span class="sr-only">Close modal</span>
</button>
</div>
<!-- Modal body -->
<div class="p-4 md:p-6 pb-8 md:pb-12 space-y-4">
{{ if $option.img }}
<img src="{{ $option.img }}" class="w-full max-h-48 object-contain {{ if $option.img_dark }}dark:hidden {{ end }}{{ $option.img_class }}" />
{{ end }}
{{ if $option.img_dark }}
<img src="{{ $option.img_dark }}" class="w-full max-h-48 object-contain hidden dark:block {{ $option.img_class }}" />
{{ end }}
<h3 class="text-xl font-semibold text-gray-900 dark:text-white">
{{ $option.title | markdownify }}
</h3>
<p class="text-base leading-relaxed text-gray-500 dark:text-gray-400">
{{ $option.content | markdownify }}
</p>
</div>
</div>
</div>
</div>
<!-- /modal -->
{{ end }}
{{ end }}
</div>
<!-- /modal container -->
{{ end }}