39 lines
539 B
Cheetah
39 lines
539 B
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 50%;
|
|
}
|
|
|
|
th, td {
|
|
padding: 8px;
|
|
text-align: left;
|
|
border-bottom: 1px solid #DDD;
|
|
}
|
|
|
|
tr:hover {background-color: #D6EEEE;}
|
|
</style>
|
|
|
|
<body>
|
|
<h1>{{.PageTitle}}</h1>
|
|
We have the following price list:
|
|
<br><br>
|
|
<table>
|
|
<tr>
|
|
<th>Id</th>
|
|
<th>Item name</th>
|
|
<th>Price</th>
|
|
</tr>
|
|
{{range .Ite}}
|
|
<tr>
|
|
<td>{{.Id}}</td>
|
|
<td>{{.Text}}</td>
|
|
<td>{{.Price}}</td>
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
</body>
|
|
</html>
|