mirror of
https://github.com/foolin/goview.git
synced 2025-09-26 19:01:15 +08:00
19 lines
427 B
HTML
19 lines
427 B
HTML
<!-- /views/page.html -->
|
|
<!doctype html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>{{.title}}</title>
|
|
</head>
|
|
|
|
<body>
|
|
<a href="/"><- Back home!</a>
|
|
<hr>
|
|
This page not use master, Render code:
|
|
<pre>ctx.HTML(200, "page.html", gin.H{})</pre>
|
|
<br>
|
|
"page.html" - add extension ".html" will render without master.
|
|
<hr>
|
|
{{include "layouts/footer"}}
|
|
</body>
|
|
</html> |