1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-22 20:06:21 +02:00
echo/website/layouts/index.html
Vishal Rana b6f754b2a2 Updated docs
Signed-off-by: Vishal Rana <vr@labstack.com>
2015-10-05 15:54:42 -07:00

25 lines
552 B
HTML

{{ partial "head.html" . }}
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
{{ partial "header.html" . }}
<main class="mdl-layout__content">
<div class="page-content">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--3-col">
{{ partial "menu.html" . }}
</div>
<div class="mdl-cell mdl-cell--9-col">
{{ range where .Data.Pages "Title" "Index" }}
{{ .Content }}
{{ end }}
</div>
</div>
</div>
{{ partial "footer.html" . }}
</main>
</div>
</body>
</html>