1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/views/pdf-designs/elegant.html
2020-07-22 14:43:07 +02:00

53 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<link rel="stylesheet" href="$css" />
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
</head>
<body class="$global-margin antialiased bg-white break-words">
<!-- Company logo, entity details -->
<div class="grid grid-cols-12 gap-4 pb-6 border-b-4 border-black">
<div class="col-span-6">
<img
src="$company-logo"
alt="$company-name logo"
class="w-24 col-span-4 sm:w-32"
/>
</div>
<div class="flex flex-col items-end col-span-6">
<table id="entity-details"></table>
</div>
</div>
<!-- Client details, company details -->
<div class="grid grid-cols-12 gap-4 pt-6 mt-1 border-t border-black">
<div
class="col-span-5 border-r border-black border-dashed"
id="client-details"
></div>
<div class="flex col-span-7 space-x-8">
<div id="company-details"></div>
<div id="company-address"></div>
</div>
</div>
<!-- Product table -->
<table id="product-table" class="w-full mt-10 table-auto"></table>
<!-- Thanks label -->
<p class="w-full pb-4 mt-10 text-2xl font-semibold text-center border-b-4 border-black">$thanks</p>
<div class="w-full border-black order-b wpy-1"></div>
</body>
</html>