1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/resources/views/pdf-designs/plain.html
2020-08-28 07:07:28 +10:00

64 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>
<style>
/** Required for proper margins on print **/
@page {
margin-top: 8.5mm;
margin-bottom: 8.5mm;
}
/** Custom CSS goes here.. */
</style>
<body class="$global-margin antialiased break-words bg-white">
<!-- Company name, company address, company logo -->
<div class="grid grid-cols-12 gap-4" id="header">
<div class="col-span-4">$company.name</div>
<div class="col-span-4" id="company-address"></div>
<div class="col-span-4">
<img
src="$company.logo"
alt="$company.name logo"
class="block w-24 col-span-4 sm:w-32"
/>
</div>
</div>
<!-- Entity details -->
<div class="grid grid-cols-12">
<div class="col-span-6 col-start-6 mt-12">
<table class="flex justify-between" id="entity-details"></table>
</div>
</div>
<!-- Client details -->
<div class="grid grid-cols-12 mt-12">
<div class="col-span-12 mb-10">
<p class="text-xl font-semibold text-black uppercase">
$your_entity_label
</p>
</div>
<div class="col-span-6" id="client-details"></div>
</div>
<!-- Product table -->
<table
id="product-table"
class="w-full mt-8 table-auto $table-padding"
></table>
</body>
<footer id="footer"></footer>
</html>