1
0
mirror of https://github.com/labstack/echo.git synced 2026-05-16 09:48:24 +02:00
Files
echo/website/layouts/index.html
T

43 lines
1.2 KiB
HTML
Raw Normal View History

2016-10-20 11:30:53 -07:00
{{ partial "head.html" . }}
2017-01-05 21:52:18 -08:00
<body>
2016-11-20 14:16:22 -08:00
{{ partial "topnav.html" . }}
2016-12-13 23:15:44 -08:00
<div class="hide-large">
2016-11-20 14:16:22 -08:00
{{ partial "sidenav.html" . }}
</div>
2016-12-05 23:01:41 -08:00
<div class="w3-container w3-content main">
2016-12-04 19:20:08 -08:00
{{ partial "ad.html" }}
2016-12-05 23:01:41 -08:00
<div class="w3-row">
2016-12-04 19:20:08 -08:00
<div class="w3-col s12 m10 l10">
2016-11-19 22:13:05 -08:00
<div class="hero">
2016-11-28 20:30:42 -08:00
<h1>{{ .Site.Data.index.heading }}</h1>
<h2>{{ .Site.Data.index.description }}</h2>
2016-11-19 22:13:05 -08:00
<p>
2016-12-20 23:00:40 -08:00
<img style="width: 100%;" src="/images/terminal.png" alt="Echo">
2016-11-19 22:13:05 -08:00
</p>
</div>
<div class="w3-padding-32 w3-center">
<a class="w3-btn w3-theme w3-round w3-xlarge" href="/guide">Get Started</a>
<a class="w3-btn w3-black w3-round w3-xlarge w3-margin-left" href="https://github.com/labstack/echo" target="_blank">GitHub</a>
</div>
<div class="features">
{{ range .Site.Data.index.features }}
2016-11-21 14:42:13 -08:00
<div class="feature">
2016-11-22 08:19:27 -08:00
<img src="https://cdn.labstack.com/images/icons/{{ .icon }}.svg">
2016-11-21 14:42:13 -08:00
<h3>
{{ .title }}
</h3>
<p>
{{ .text | safeHTML }}
</p>
</div>
2016-11-19 22:13:05 -08:00
{{ end }}
</div>
2016-10-20 11:30:53 -07:00
</div>
</div>
</div>
2017-01-05 21:52:18 -08:00
{{ partial "footer.html" . }}
2016-10-20 11:30:53 -07:00
</body>
</html>