mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
51 lines
1.6 KiB
HTML
51 lines
1.6 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>
|
|
#product-table tbody > tr:nth-child(even) {
|
|
background-color: #f7fafc;
|
|
}
|
|
</style>
|
|
|
|
<body class="$global-margin bg-white break-words antialiased">
|
|
<!-- Company logo, company details -->
|
|
<div class="grid grid-cols-12 px-2" id="header">
|
|
<img
|
|
src="$company_logo"
|
|
alt="$company_name logo"
|
|
class="grid w-24 col-span-4 sm:w-32"
|
|
/>
|
|
<div
|
|
class="grid grid-cols-2 col-span-8 text-gray-700 lg:col-span-6"
|
|
>
|
|
<div id="company-details" class="col-span-1"></div>
|
|
<div id="company-address" class="col-span-1"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Entity labels, client details -->
|
|
<p class="mt-10 px-2 text-xl text-blue-500 uppercase">$entity_label</p>
|
|
<div class="grid grid-cols-12 px-2 py-3 mt-4 border-t border-b">
|
|
<div class="col-span-6">
|
|
<table id="entity-details"></table>
|
|
</div>
|
|
<div id="client-details" class="col-span-6"></div>
|
|
</div>
|
|
|
|
<!-- Product table -->
|
|
<table id="product-table" class="table-auto mt-12 w-full"></table>
|
|
</body>
|
|
|
|
<footer id="footer"></footer>
|
|
</html>
|