29 lines
844 B
HTML
29 lines
844 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>
|
||
|
<link rel="stylesheet" href="/static/main.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<div class="header">
|
||
|
<h1>EnPLS Network </h1>
|
||
|
</div>
|
||
|
<div class="main">
|
||
|
<h1>{{.Title}}</h1>
|
||
|
<p>{{.Message}}</p>
|
||
|
<p>If you believe that this situation is unusual, please don't hesitate to <a
|
||
|
href="mailto:mael@enpls.org">contact us</a>.
|
||
|
</div>
|
||
|
<div class="footer">
|
||
|
<p>© Copyright {{.Year}} EnPLS Network - <a href="https://enpls.org">enpls.org</a> </p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|