1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-22 20:06:21 +02:00
echo/website/layouts/_default/single.html
Vishal Rana fe269b3e1c fixed ##743
Signed-off-by: Vishal Rana <vr@labstack.com>
2016-11-21 14:42:13 -08:00

32 lines
890 B
HTML

{{ partial "head.html" . }}
<body>
{{ partial "topnav.html" . }}
{{ partial "sidenav.html" . }}
<div class="w3-main w3-padding-64">
{{ partial "ad.html" }}
<div class="w3-row-padding">
<div class="w3-col 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>
</div>
{{ partial "footer.html" . }}
</body>
</html>