mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
38c6241055
One change to code base but it will be described at the next version: Error Handlers (`app.OnErrorCode/OnAnyErrorCode`) respect the `app.UseGlobal`'s middlewares now (not the `app.Use` for reasons we can all understand, hopefully). Former-commit-id: ec97bbb04548f9932cf4d7b950be513b70747bcb
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> |