forked from labstack/echo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Vishal Rana <[email protected]>
- Loading branch information
Showing
9 changed files
with
66 additions
and
66 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
baseurl = "https://echo.labstack.com" | ||
languageCode = "en-us" | ||
title = "Echo - High performance, minimalist Go web framework" | ||
canonifyurls = true | ||
googleAnalytics = "UA-85059636-2" | ||
[permalinks] | ||
guide = "/guide/:filename" | ||
middleware = "/middleware/:filename" | ||
recipes = "/recipes/:filename" | ||
[params] | ||
description = "Echo is a high performance, extensible, minimalist web framework for Go (Golang)." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,33 @@ | ||
{{ partial "head.html" . }} | ||
<body> | ||
{{ partial "topnav.html" . }} | ||
{{ partial "sidenav.html" . }} | ||
<div class="w3-main w3-padding-64"> | ||
{{ partial "ad.html" }} | ||
<div class="w3-row-padding"> | ||
<div class="w3-col 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> | ||
</div> | ||
{{ partial "footer.html" . }} | ||
<div class="w3-container w3-content"> | ||
{{ partial "sidenav.html" . }} | ||
<div class="w3-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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<div class="w3-panel w3-pale-red w3-leftbar w3-border-red"> | ||
<!--<div class="w3-panel w3-pale-red w3-leftbar w3-border-red"> | ||
<h3> | ||
Check out our new project <a href="https://github.com/labstack/armor">Armor</a> | ||
</h3> | ||
<p> | ||
Uncomplicated HTTP server, supports HTTP/2 and auto TLS | ||
</p> | ||
</div> | ||
</div>--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
<nav class="topnav"> | ||
<a href="/"><img class="logo" src="/images/logo.png" alt="Echo"></a> | ||
<span class="w3-hide-small"> | ||
<input id="search-box" type="text" class="w3-input" placeholder="Search..."> | ||
<i class="fa fa-search"></i> | ||
</span> | ||
<span class="w3-hide-small w3-hide-medium menu"> | ||
{{ $currentNode := . }} | ||
{{ range .Site.Menus.main }} | ||
<a{{ if or ($currentNode.HasMenuCurrent "main" .) ($currentNode.IsMenuCurrent "main" .) }} class="active"{{ end }} href="{{ .URL }}">{{ .Name }}</a> | ||
{{ end }} | ||
</span> | ||
<span class="w3-xxlarge w3-hide-large" onclick="openSidenav()">☰</span> | ||
</nav> | ||
<div class="topnav"> | ||
<nav class="w3-content"> | ||
<a href="/"><img class="logo" src="/images/logo.png" alt="Echo"></a> | ||
<span class="w3-hide-small"> | ||
<input id="search-box" type="text" class="w3-input" placeholder="Search..."> | ||
<i class="fa fa-search"></i> | ||
</span> | ||
<span class="w3-hide-small w3-hide-medium menu"> | ||
{{ $currentNode := . }} | ||
{{ range .Site.Menus.main }} | ||
<a{{ if or ($currentNode.HasMenuCurrent "main" .) ($currentNode.IsMenuCurrent "main" .) }} class="active"{{ end }} href="{{ .URL }}">{{ .Name }}</a> | ||
{{ end }} | ||
</span> | ||
<span class="w3-xxlarge w3-hide-large" onclick="openSidenav()">☰</span> | ||
</nav> | ||
</div> |