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 57c7dccfbf docs: edit on github
Signed-off-by: Vishal Rana <vishal.rana@verizon.com>
2016-11-16 22:51:37 -08:00

33 lines
922 B
HTML

{{ partial "head.html" . }}
<body>
{{ partial "navbar.html" . }}
{{ partial "sidenav.html" . }}
{{ partial "search.html" . }}
<div class="w3-main w3-padding-64">
{{ partial "ad.html" }}
<div class="w3-row-padding">
<div class="w3-col m9 l9">
{{ partial "notice.html" }}
<article class="content">
<section>
<h1>{{ .Title }}</h1>
{{ .Content }}
</section>
<footer>
<div class="w3-panel w3-pale-yellow w3-leftbar w3-border-yellow">
<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>