40 lines
893 B
HTML
40 lines
893 B
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">
|
|
<title>{{title}}</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h3>{{name}}</h3>
|
|
<table width="500px">
|
|
<tr>
|
|
<td>
|
|
<div>
|
|
<img src="{{image}}" width="200px" alt="" style="float: left; margin-right: 10px;">
|
|
<p style="text-indent: 2em;">{{desc}}</p>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<br />
|
|
<p style="text-indent: 2em;">{{summary}}</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<br />
|
|
<div style="text-align: center;">
|
|
<a href="{{mediaUrl}}" style="display:
|
|
inline-block; padding: 5px;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
border-radius: 5px;">
|
|
<img src="{{mediaIcon}}" height="50px" />
|
|
</a>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |