1
0
mirror of https://github.com/labstack/echo.git synced 2026-05-16 09:48:24 +02:00
Files
echo/website/layouts/_default/single.html
T
Vishal Rana 35742c9f04 Update website
Signed-off-by: Vishal Rana <vr@labstack.com>
2017-01-09 20:20:51 -08:00

34 lines
1001 B
HTML

{{ partial "head.html" . }}
<body class="docs">
{{ partial "topnav.html" . }}
<div class="w3-container w3-content">
{{ partial "sidenav.html" . }}
<div class="main">
{{ partial "ad.html" }}
<div class="w3-row">
<div class="w3-col s12 m10 l10">
{{ partial "notice.html" }}
<article class="content">
<section>
<h1>{{ .Title }}</h1>
{{ .Content }}
</section>
<footer>
<div class="w3-panel w3-pale-blue w3-leftbar w3-border-blue">
<p>
<i class="fa fa-pencil" aria-hidden="true"></i>
<a href="https://github.com/labstack/echo/blob/master/website/content/{{ .File.Path }}">
Edit this page on GitHub
</a>
</p>
</div>
</footer>
</article>
</div>
</div>
{{ partial "footer.html" . }}
</div>
</div>
</body>
</html>