mirror of
https://github.com/labstack/echo.git
synced 2025-01-07 23:01:56 +02:00
f10daac5d6
Signed-off-by: Vishal Rana <vr@labstack.com>
15 lines
309 B
HTML
15 lines
309 B
HTML
{{ partial "head.html" . }}
|
|
<body class="single">
|
|
{{ partial "topnav.html" . }}
|
|
<div class="w3-container w3-content main">
|
|
<div class="w3-row">
|
|
<div class="w3-col m10 l10">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html>
|