mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
60 lines
1.9 KiB
HTML
60 lines
1.9 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="$app_url/css/tailwindcss@1.4.6.css" />
|
|
</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 class="col-span-6">
|
|
<p class="text-xl font-semibold uppercase">
|
|
$your_entity_label
|
|
</p>
|
|
</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_label
|
|
</p>
|
|
<div class="w-full border-black order-b wpy-1"></div>
|
|
</body>
|
|
|
|
<footer id="footer"></footer>
|
|
</html>
|