mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
45c6bce15f
Former-commit-id: 23f795a6b6b64745311d0630d8e630edc3f65244
23 lines
479 B
HTML
23 lines
479 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
|
<title>{{.Title}} - {{.AppName}}</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
<!-- Render the current template here -->
|
|
{{ yield }}
|
|
<hr />
|
|
<footer>
|
|
<p>© 2017 - {{.AppOwner}}</p>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |