blog-of-pesto/web/templates/review.html

34 lines
871 B
HTML
Raw Normal View History

<h1 id="{REVIEW_ID}">{TITLE}</h1>
2022-08-19 13:58:08 +02:00
<p class="category-container">{CATEGORIES}<p>
2022-08-09 14:59:24 +02:00
<div class="review-body">
2022-08-19 13:58:08 +02:00
2022-08-09 14:59:24 +02:00
<div class="image-container">
{IMAGE_ITEMS}
</div>
2022-08-05 23:02:25 +02:00
2022-08-19 13:58:08 +02:00
2022-08-09 14:59:24 +02:00
<p><em>Date:</em> {DATE}</p>
2022-08-05 23:02:25 +02:00
2022-08-09 14:59:24 +02:00
<p><em>Notes:</em> {NOTES}</p>
2022-08-05 23:02:25 +02:00
2022-08-09 14:59:24 +02:00
<p><em>Ingredients:</em> {INGREDIENTS}</p>
2022-08-05 23:02:25 +02:00
2022-08-09 14:59:24 +02:00
<table>
<tr>
<th>Category</th> <th>Score / Value</th>
</tr>
<tr> <td>Taste</td> <td>{RATING_TASTE}</td> </tr>
<tr> <td>Consistency</td> <td>{RATING_CONSISTENCY}</td> </tr>
<tr> <td>Ingredients</td> <td>{RATING_INGREDIENTS}</td> </tr>
<tr> <td>Price</td> <td>{RATING_PRICE}</td> </tr>
<tr> <td>Size</td> <td>{RATING_SIZE}</td> </tr>
<tr> <td>Servings</td> <td>{RATING_SERVINGS}</td> </tr>
2022-08-09 14:59:24 +02:00
</table>
2022-08-05 23:02:25 +02:00
2022-08-09 14:59:24 +02:00
<p class="final-rating">Final rating: {RATING}</p>
2022-08-09 14:59:24 +02:00
<hr/>
</div>