mirror of
https://github.com/labstack/echo.git
synced 2025-03-11 14:49:56 +02:00
34 lines
1009 B
HTML
34 lines
1009 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-padding">
|
|
<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>
|