contact/html_template.hbs

35 lines
434 B
Handlebars
Raw Normal View History

2016-09-02 17:55:38 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style media="screen">
th {
text-align: right;
font-weight: bold;
}
</style>
</head>
<body>
<p>{{info}}</p>
<table>
<tbody>
{{#data}}
<tr>
<th>
{{key}}:
</th>
<td>
{{value}}
</td>
</tr>
{{/data}}
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
</body>
2016-09-02 17:55:38 -04:00
</html>