mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
fe269b3e1c
Signed-off-by: Vishal Rana <vr@labstack.com>
43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
HTML
{{ partial "head.html" . }}
|
|
<body>
|
|
{{ partial "topnav.html" . }}
|
|
<div class="w3-hide-large">
|
|
{{ partial "sidenav.html" . }}
|
|
</div>
|
|
<div class="w3-container w3-content w3-padding-64">
|
|
{{ partial "ad.html" }}
|
|
<div class="w3-row-padding">
|
|
<div class="w3-col m10 l10">
|
|
<div class="hero">
|
|
<h1>{{ .Site.Data.index.h1 }}</h1>
|
|
<h2>{{ .Site.Data.index.h2 }}</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="/images/{{ .icon }}.svg">
|
|
<h3>
|
|
{{ .title }}
|
|
</h3>
|
|
<p>
|
|
{{ .text | safeHTML }}
|
|
</p>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html>
|