mirror of
https://github.com/labstack/echo.git
synced 2026-05-16 09:48:24 +02:00
8047be7f12
Signed-off-by: Vishal Rana <vr@labstack.com>
15 lines
295 B
HTML
15 lines
295 B
HTML
{{ partial "head.html" . }}
|
|
<body>
|
|
{{ 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>
|