mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-03 04:45:32 -05:00
37 lines
1.2 KiB
HTML
37 lines
1.2 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">
|
|
</head>
|
|
|
|
<style>
|
|
#product-table 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">
|
|
<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 text-xl text-blue-500 uppercase">$entity</p>
|
|
<div class="grid grid-cols-12 px-2 py-3 mt-4 border-t border-b">
|
|
<table class="col-span-6 lg:col-span-5" id="entity-details"></table>
|
|
<div id="client-details" class="col-span-6"></div>
|
|
</div>
|
|
|
|
<!-- Product table -->
|
|
<table id="product-table" class="table-auto"></table>
|
|
</body> |