You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
HTML
55 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>Ingredients</th>
|
|
<th>Weight</th>
|
|
<th>Price</th>
|
|
<th>Servings</th>
|
|
<th>Serving 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 one serving of pesto. Higher is better.</p>
|
|
|
|
</main>
|
|
<footer>
|
|
<p>© copyright {CURRENT_YEAR} by Anton Lydike</p> <p>Download raw review data: <a href="reviews.json">reviews.json</a></p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|