Remove obsolete file

This commit is contained in:
Björn Fromme
2021-08-23 20:50:16 +02:00
parent d213e7deea
commit b513014413
@@ -1,22 +0,0 @@
<html data-namespace-typo3-fluid="true" lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://typo3.org/ns/fluid/ViewHelpers">
<div x-data x-show="$store.show.modal === '{id}'" x-transition x-cloak class="fixed inset-0 w-full h-full z-50">
<div class="absolute inset-0 w-full h-full bg-overlay-black" x-on:click="$store.show.modal = null"></div>
<div class="absolute top-1/2 left-1/2 transform -translate-xy-1/2 bg-white p-8 shadow w-full max-w-3xl rounded">
<div class="flex justify-between border-b border-gray-200 pb-2 mb-4">
<template x-if="$store.modal.title">
<span class="text-lg font-bold">
{title -> f:format.raw()}
</span>
</template>
<button x-on:click.prevent="$store.show.modal = null" class="inline-block">
<svg class="w-8 h-8"><use href="#icon-close"></use></svg>
</button>
</div>
{content -> f:format.raw()}
</div>
</div>
</html>