mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
561f15ccf1
Signed-off-by: Vishal Rana <vr@labstack.com>
43 lines
1.3 KiB
HTML
43 lines
1.3 KiB
HTML
{{ partial "head.html" . }}
|
|
<body class="index">
|
|
{{ partial "topnav.html" . }}
|
|
<div class="hide-large">
|
|
{{ partial "sidenav.html" . }}
|
|
</div>
|
|
<div class="w3-container w3-content main">
|
|
{{ partial "ad.html" }}
|
|
<div class="w3-row">
|
|
<div class="w3-col s12 m10 l10">
|
|
<div class="hero">
|
|
<h1>{{ .Site.Data.index.heading }}</h1>
|
|
<h2>{{ .Site.Data.index.description }}</h2>
|
|
<p>
|
|
<img style="width: 100%;" src="/images/echo_terminal.png" alt="Echo">
|
|
</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 }}
|
|
<div class="feature">
|
|
<img src="https://cdn.labstack.com/images/icons/{{ .icon }}.svg">
|
|
<h3>
|
|
{{ .title }}
|
|
</h3>
|
|
<p>
|
|
{{ .text | safeHTML }}
|
|
</p>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html>
|