blog-of-pesto/web/templates/table.html
2022-08-19 13:58:08 +02:00

54 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css?v={CSS_HASH}"/>
<title>Blog of Pesto - Table</title>
</head>
<body>
<header>
<h1>
Blog of Pesto
<span class="thin"> - reviewing all sorts of pesto</span>
</h1>
</header>
<main>
<h1>Tabular Overview</h1>
<p>Tabular overview over all reviews on this blog:</p>
<div class="large-table-wrapper">
<table>
<thead>
<tr>
<th>Brand</th>
<th>Name</th>
<th>Type</th>
<th>Rating</th>
<th>Taste</th>
<th>Consistency</th>
<th>Ingredient</th>
<th>Weight</th>
<th>Price</th>
<th>100g Price</th>
<th>Value *</th>
<th>Creamy / Rustic</th>
</tr>
</thead>
<tbody>
{TABLE_ROWS}
</tbody>
</table>
</div>
<p>* Value is defined as the taste rating divided by the price of 10 grams of pesto. This is an arbitrary metric, but you can interpret it as "taste per normalized price". Higher is better.</p>
</main>
<footer>
<p>&copy; copyright {CURRENT_YEAR} by Anton Lydike</p> <p>Download raw review data: <a href="reviews.json">reviews.json</a></p>
</footer>
</body>
</html>