-
Notifications
You must be signed in to change notification settings - Fork 617
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create 404 template in docs/layouts/404.html * remove magiconair repo from .goreleaser.yml * remove magiconair repo from build/homebrew.sh * update LICENSE and docs/layouts/partials/footer.html with correct dates * test doc site generation during travis test * always pass $GOFLAGS to build and test * do not call mod target for every build
- Loading branch information
Aaron Hurt
authored
Jan 24, 2020
1 parent
4425372
commit 2059151
Showing
7 changed files
with
38 additions
and
15 deletions.
There are no files selected for viewing
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
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,15 @@ | ||
{{partial "header" .}} | ||
|
||
<main class="container"> | ||
<div class="row"> | ||
{{partial "sidebar" .}} | ||
<article class="col-sm-9 main-content" role="main"> | ||
<section> | ||
<h2>Page Not Found</h2> | ||
<a href="{{ "/" | relURL }}">Return Home</a> | ||
</section> | ||
</article> | ||
</div> | ||
</main> | ||
|
||
{{partial "footer" .}} |
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 |
---|---|---|
|
@@ -618,4 +618,4 @@ func tableSchemes(r route.Routes) []string { | |
} | ||
} | ||
return unique(schemes) | ||
} | ||
} |