23 lines
801 B
HTML
23 lines
801 B
HTML
{{ template "header.html" . }}
|
|
|
|
<section class="bg-white py-8 antialiased dark:bg-gray-900 md:py-16">
|
|
<div class="mx-auto max-w-3xl">
|
|
<div class="mt-6 sm:mt-8">
|
|
<div class="relative overflow-x-auto border-b border-gray-200 dark:border-gray-800">
|
|
<h2 class="title font-manrope font-bold text-4xl leading-10 mb-8 text-center text-black">Print Started
|
|
</h2>
|
|
<div class="w-full grid grid-cols-1 gap-4 mx-auto p-4 m-4 flex flex-wrap border rounded shadow-md">
|
|
<div class="flex flex-col">
|
|
{{ template "invoice.html" .data.invoice }}
|
|
</div>
|
|
<div class="grid grid-cols-2 mt-4 flex flex-wrap gap-2 w-full">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{{ template "footer.html" . }}
|