mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
23 lines
481 B
HTML
23 lines
481 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> |