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

52 lines
1.8 KiB
HTML
Raw Normal View History

2020-07-21 18:03:14 +02:00
<!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" />
</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
2020-08-05 14:43:51 +02:00
src="$company.logo"
alt="$company.name logo"
2020-07-21 18:03:14 +02:00
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>
2020-07-21 18:03:14 +02:00
</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 -->
2020-08-07 17:47:17 +02:00
<p class="w-full pb-4 mt-10 text-2xl font-semibold text-center border-b-4 border-black">$thanks_label</p>
2020-07-21 18:03:14 +02:00
<div class="w-full border-black order-b wpy-1"></div>
</body>
</html>