Merge branch 'master' into master

This commit is contained in:
Ousmane Traore 2017-05-23 21:29:46 -04:00 committed by GitHub
commit 781e02cdd7
63 changed files with 2422 additions and 90 deletions

22
.codeclimate.yml Normal file
View File

@ -0,0 +1,22 @@
---
engines:
rubocop:
enabled: true
golint:
enabled: true
gofmt:
enabled: true
govet:
enabled: true
fixme:
enabled: true
duplication:
enabled: true
config:
languages:
- go
ratings:
paths:
- "**.go"
exclude_paths:
- vendor/

4
.gitattributes vendored Normal file
View File

@ -0,0 +1,4 @@
tmpl/assets/* linguist-vendored
*.js linguist-vendored
*.css linguist-vendored
*.html linguist-vendored

View File

@ -1,11 +1,13 @@
Please check if what you want to add to `awesome-go` list meets [quality standards](https://github.com/avelino/awesome-go/blob/master/CONTRIBUTING.md#quality-standard) before sending pull request. Thanks!
**Please provide package links to:**
- github.com repo:
- godoc.org:
- goreportcard.com:
- coverage service link (gocover, coveralls etc.):
- github.com repo:
- godoc.org:
- goreportcard.com:
- coverage service link ([cover.run](https://cover.run/), [gocover](http://gocover.io/), [coveralls](https://coveralls.io/) etc.), example: `![cover.run go](https://cover.run/go/github.com/user/repository.svg)`
Very good coverage
**Note**: that new categories can be added only when there are 3 packages or more.

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
tmpl/index.html
awesome-go

View File

@ -1,11 +1,9 @@
language: go
go:
- 1.4
- 1.7
sudo: false
install:
- go get github.com/russross/blackfriday
- go get github.com/PuerkitoBio/goquery
- go get -t -v ./...

View File

@ -7,19 +7,21 @@ Join us on IRC at **#awesome-go** on freenode [web access](http://webchat.freeno
- **To add, remove, or change things on the list:** Submit a pull request
To set this list apart from and compliment the excellent [Go wiki Projects page](https://golang.org/wiki/Projects), awesome-go is a specially curated list for high-quality, actively maintained Go packages and resources.
To set this list apart from and complement the excellent [Go wiki Projects page](https://golang.org/wiki/Projects), awesome-go is a specially curated list for high-quality, actively maintained Go packages and resources.
- List items should be sorted *alphabetically*.
- Each item should be limited to one link
- The link should be the name of the package or project
- Descriptions should be clear, concise, and non-promotional
- Descriptions should follow the link, on the same line
- Needs bibliotica 3 (minimum) to create a new category.
- Each item should be limited to one link.
- The link should be the name of the package or project.
- Descriptions should be clear, concise, and non-promotional.
- Descriptions should follow the link, on the same line.
- At least 3 items are needed to create a new category.
Please contribute links to packages/projects you have used or are familiar with. This will help ensure high-quality entries.
If you removed our PR template you can find it [here](https://github.com/avelino/awesome-go/blob/master/.github/PULL_REQUEST_TEMPLATE.md).
## Quality standard
## Quality standards
To be on the list, project repositories should adhere to these quality standards (http://goreportcard.com/report/**github_user**/**github_repo**):
@ -30,7 +32,12 @@ To be on the list, project repositories should adhere to these quality standards
- Or, for finished projects, issues and pull requests are responded to
- Stable or progressing toward stable
- Thoroughly documented (README, godoc comments, etc.)
- Tests, where practical
- Tests, where practical. If the library/program is testable, then coverage should be >= 80% for non-data-related packages and >=90% for data related packages. **Notice**: the tests will be reviewed too. We will check your coverage manually if your package's coverage is just a benchmark results.
## Maintainers
To make sure every PR is checked, we have [team maintainers](MAINTAINERS). Every PR MUST be reviewed by at least two maintainers before it can get merged.
## Reporting issues

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM golang:alpine
RUN apk add --update -t build-deps curl go git libc-dev gcc libgcc
RUN go get github.com/russross/blackfriday github.com/gorilla/mux
WORKDIR /srv
CMD ["go", "run", "repo.go"]

9
MAINTAINERS Normal file
View File

@ -0,0 +1,9 @@
Avelino <thiago@avelino.xxx> (@avelino)
Duke <emersonalmeidax@gmail.com> (@dukex)
Dmitri Shuralyov <shurcooL@gmail.com> (@shurcooL)
Dobrosław Żybort <matrixik@gmail.com> (@matrixik)
Dean Karn <Dean.Karn@gmail.com> (@joeybloggs)
Kirill Danshin <kirill@danshin.pro> (@kirillDanshin)
Felipe Oliveira <felipeweb.programador@gmail.com> (@felipeweb)
Bo-Yi Wu <appleboy.tw@gmail.com> (@appleboy)
Cássio Botaro <cassiobotaro@gmail.com> (@cassiobotaro)

368
README.md

File diff suppressed because it is too large Load Diff

15
docker-compose.yml Normal file
View File

@ -0,0 +1,15 @@
version: "2"
services:
caddy:
image: abiosoft/caddy
volumes:
- ./tmpl:/srv
ports:
- 80:2015
webhook:
build: ./
volumes:
- ./:/srv
ports:
- 9000:9000

60
repo.go
View File

@ -1 +1,59 @@
package repo
package main
import (
"io/ioutil"
"net/http"
"os"
"os/exec"
"text/template"
"github.com/gorilla/mux"
gfm "github.com/shurcooL/github_flavored_markdown"
)
// memory usage optimizations
const (
emtyStr = ""
git = "git"
checkout = "checkout"
force = "-f"
pull = "pull"
// options
readmePath = "./README.md"
tplPath = "tmpl/tmpl.html"
idxPath = "tmpl/index.html"
)
var (
doneResp = []byte("Done!\n")
)
type content struct {
Body string
}
func generateHTML() {
// Update repo
exec.Command(git, checkout, force).Output()
exec.Command(git, pull).Output()
input, _ := ioutil.ReadFile(readmePath)
body := string(gfm.Markdown(input))
c := &content{Body: body}
t := template.Must(template.ParseFiles(tplPath))
f, _ := os.Create(idxPath)
t.Execute(f, c)
}
func hookHandler(w http.ResponseWriter, r *http.Request) {
go generateHTML()
w.Write(doneResp)
}
func main() {
r := mux.NewRouter()
r.HandleFunc("/hook", hookHandler)
http.ListenAndServe(":9000", r)
}

View File

@ -1,9 +1,8 @@
package repo
package main
import (
"bytes"
"io/ioutil"
"log"
"sort"
"strings"
"testing"
@ -24,20 +23,19 @@ func TestDuplicatedLinks(t *testing.T) {
query := startQuery()
links := make(map[string]bool, 0)
query.Find("body a").Each(func(_ int, s *goquery.Selection) {
href, ok := s.Attr("href")
if !ok {
log.Printf("expected '%s' href", s)
t.Fail()
}
query.Find("body li > a:first-child").Each(func(_ int, s *goquery.Selection) {
t.Run(s.Text(), func(t *testing.T) {
href, ok := s.Attr("href")
if !ok {
t.Error("expected to have href")
}
if links[href] {
log.Printf("duplicated link '%s'", href)
t.Fail()
return
}
if links[href] {
t.Fatalf("duplicated link '%s'", href)
}
links[href] = true
links[href] = true
})
})
}
@ -46,7 +44,12 @@ func testList(t *testing.T, list *goquery.Selection) {
testList(t, items)
items.RemoveFiltered("ul")
})
checkAlphabeticOrder(t, list)
category := list.Prev().Text()
t.Run(category, func(t *testing.T) {
checkAlphabeticOrder(t, list)
})
}
func readme() []byte {
@ -80,8 +83,10 @@ func checkAlphabeticOrder(t *testing.T, s *goquery.Selection) {
for k, item := range items {
if item != sorted[k] {
log.Printf("expected '%s' but actual is '%s'", sorted[k], item)
t.Fail()
t.Errorf("expected '%s' but actual is '%s'", sorted[k], item)
}
}
if t.Failed() {
t.Logf("expected order is:\n%s", strings.Join(sorted, "\n"))
}
}

43
tmpl/assets/awesome-go.css vendored Normal file
View File

@ -0,0 +1,43 @@
* {
max-width: 100%;
box-sizing: border-box;
font-family: "Fira Sans";
text-decoration: none;
font-weight: 300;
}
.awesome-logo {
max-width: 500px;
width: 100%;
margin: auto;
display: block;
}
a {
color: #669;
}
a:visited, h1, h2, h3, h4 {
color: #494368;
font-weight: 400;
}
h1 > a:nth-child(1) {
margin-left: 10px;
}
h1 > a img {
padding-right: 5px;
}
#content {
width: 100%;
padding: 40px 80px;
}
@media (max-width: 720px) {
#content {
padding: 20px 40px;
}
}
@media (max-width: 420px) {
#content * {
word-wrap: break-word;
}
}

140
tmpl/assets/fonts/firasans.css vendored Normal file
View File

@ -0,0 +1,140 @@
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans ExtraLight'),
local('FiraSans-ExtraLight'),
url('/assets/fonts/firasansextralight.woff2') format('woff2'),
url('/assets/fonts/firasansextralight.woff') format('woff'),
url('/assets/fonts/firasansextralight.ttf') format('truetype');
font-weight: 100;
font-style: normal;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans ExtraLight Italic'),
local('FiraSans-ExtraLightItalic'),
url('/assets/fonts/firasansextralightitalic.woff2') format('woff2'),
url('/assets/fonts/firasansextralightitalic.woff') format('woff'),
url('/assets/fonts/firasansextralightitalic.ttf') format('truetype');
font-weight: 100;
font-style: italic;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans Light'),
local('FiraSans-Light'),
url('/assets/fonts/firasanslight.woff2') format('woff2'),
url('/assets/fonts/firasanslight.woff') format('woff'),
url('/assets/fonts/firasanslight.ttf') format('truetype');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans Light Italic'),
local('FiraSans-LightItalic'),
url('/assets/fonts/firasanslightitalic.woff2') format('woff2'),
url('/assets/fonts/firasanslightitalic.woff') format('woff'),
url('/assets/fonts/firasanslightitalic.ttf') format('truetype');
font-weight: 200;
font-style: italic;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans Book'),
local('FiraSans-Book'),
url('/assets/fonts/firasansbook.woff2') format('woff2'),
url('/assets/fonts/firasansbook.woff') format('woff'),
url('/assets/fonts/firasansbook.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans Book Italic'),
local('FiraSans-BookItalic'),
url('/assets/fonts/firasansbookitalic.woff2') format('woff2'),
url('/assets/fonts/firasansbookitalic.woff') format('woff'),
url('/assets/fonts/firasansbookitalic.ttf') format('truetype');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans'),
local('FiraSans-Regular'),
url('/assets/fonts/firasans.woff2') format('woff2'),
url('/assets/fonts/firasans.woff') format('woff'),
url('/assets/fonts/firasans.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans Italic'),
local('FiraSans-Italic'),
url('/assets/fonts/firasansitalic.woff2') format('woff2'),
url('/assets/fonts/firasansitalic.woff') format('woff'),
url('/assets/fonts/firasansitalic.ttf') format('truetype');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans Medium'),
local('FiraSans-Medium'),
url('/assets/fonts/firasansmedium.woff2') format('woff2'),
url('/assets/fonts/firasansmedium.woff') format('woff'),
url('/assets/fonts/firasansmedium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans Medium Italic'),
local('FiraSans-MediumItalic'),
url('/assets/fonts/firasansmediumitalic.woff2') format('woff2'),
url('/assets/fonts/firasansmediumitalic.woff') format('woff'),
url('/assets/fonts/firasansmediumitalic.ttf') format('truetype');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans SemiBold'),
local('FiraSans-SemiBold'),
url('/assets/fonts/firasanssemibold.woff2') format('woff2'),
url('/assets/fonts/firasanssemibold.woff') format('woff'),
url('/assets/fonts/firasanssemibold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans SemiBold Italic'),
local('FiraSans-SemiBoldItalic'),
url('/assets/fonts/firasanssemibolditalic.woff2') format('woff2'),
url('/assets/fonts/firasanssemibolditalic.woff') format('woff'),
url('/assets/fonts/firasanssemibolditalic.ttf') format('truetype');
font-weight: 600;
font-style: italic;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans Bold'),
local('FiraSans-Bold'),
url('/assets/fonts/firasansbold.woff2') format('woff2'),
url('/assets/fonts/firasansbold.woff') format('woff'),
url('/assets/fonts/firasansbold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Fira Sans';
src: local('Fira Sans Bold Italic'),
local('FiraSans-BoldItalic'),
url('/assets/fonts/firasansbolditalic.woff2') format('woff2'),
url('/assets/fonts/firasansbolditalic.woff') format('woff'),
url('/assets/fonts/firasansbolditalic.ttf') format('truetype');
font-weight: 700;
font-style: italic;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

5
tmpl/assets/jquery-custom.min.js vendored Normal file

File diff suppressed because one or more lines are too long

BIN
tmpl/assets/logo.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

1286
tmpl/assets/marked.js vendored Normal file

File diff suppressed because it is too large Load Diff

425
tmpl/assets/normalize.css vendored Normal file
View File

@ -0,0 +1,425 @@
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom.
*/
html {
font-family: sans-serif; /* 1 */
-ms-text-size-adjust: 100%; /* 2 */
-webkit-text-size-adjust: 100%; /* 2 */
}
/**
* Remove default margin.
*/
body {
margin: 0;
}
/* HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined for any HTML5 element in IE 8/9.
* Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
* Correct `block` display not defined for `main` in IE 11.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
/**
* 1. Correct `inline-block` display not defined in IE 8/9.
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
*/
audio,
canvas,
progress,
video {
display: inline-block; /* 1 */
vertical-align: baseline; /* 2 */
}
/**
* Prevent modern browsers from displaying `audio` without controls.
* Remove excess height in iOS 5 devices.
*/
audio:not([controls]) {
display: none;
height: 0;
}
/**
* Address `[hidden]` styling not present in IE 8/9/10.
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
*/
[hidden],
template {
display: none;
}
/* Links
========================================================================== */
/**
* Remove the gray background color from active links in IE 10.
*/
a {
background: transparent;
}
/**
* Improve readability when focused and also mouse hovered in all browsers.
*/
a:active,
a:hover {
outline: 0;
}
/* Text-level semantics
========================================================================== */
/**
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
*/
abbr[title] {
border-bottom: 1px dotted;
}
/**
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
*/
b,
strong {
font-weight: bold;
}
/**
* Address styling not present in Safari and Chrome.
*/
dfn {
font-style: italic;
}
/**
* Address variable `h1` font-size and margin within `section` and `article`
* contexts in Firefox 4+, Safari, and Chrome.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/**
* Address styling not present in IE 8/9.
*/
mark {
background: #ff0;
color: #000;
}
/**
* Address inconsistent and variable font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
/* Embedded content
========================================================================== */
/**
* Remove border when inside `a` element in IE 8/9/10.
*/
img {
border: 0;
}
/**
* Correct overflow not hidden in IE 9/10/11.
*/
svg:not(:root) {
overflow: hidden;
}
/* Grouping content
========================================================================== */
/**
* Address margin not present in IE 8/9 and Safari.
*/
figure {
margin: 1em 40px;
}
/**
* Address differences between Firefox and other browsers.
*/
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
/**
* Contain overflow in all browsers.
*/
pre {
overflow: auto;
}
/**
* Address odd `em`-unit font size rendering in all browsers.
*/
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
/* Forms
========================================================================== */
/**
* Known limitation: by default, Chrome and Safari on OS X allow very limited
* styling of `select`, unless a `border` property is set.
*/
/**
* 1. Correct color not being inherited.
* Known issue: affects color of disabled elements.
* 2. Correct font properties not being inherited.
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
*/
button,
input,
optgroup,
select,
textarea {
color: inherit; /* 1 */
font: inherit; /* 2 */
margin: 0; /* 3 */
}
/**
* Address `overflow` set to `hidden` in IE 8/9/10/11.
*/
button {
overflow: visible;
}
/**
* Address inconsistent `text-transform` inheritance for `button` and `select`.
* All other form control elements do not inherit `text-transform` values.
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
* Correct `select` style inheritance in Firefox.
*/
button,
select {
text-transform: none;
}
/**
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
* and `video` controls.
* 2. Correct inability to style clickable `input` types in iOS.
* 3. Improve usability and consistency of cursor style between image-type
* `input` and others.
*/
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button; /* 2 */
cursor: pointer; /* 3 */
}
/**
* Re-set default cursor for disabled elements.
*/
button[disabled],
html input[disabled] {
cursor: default;
}
/**
* Remove inner padding and border in Firefox 4+.
*/
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
/**
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
* the UA stylesheet.
*/
input {
line-height: normal;
}
/**
* It's recommended that you don't attempt to style these elements.
* Firefox's implementation doesn't respect box-sizing, padding, or width.
*
* 1. Address box sizing set to `content-box` in IE 8/9/10.
* 2. Remove excess padding in IE 8/9/10.
*/
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
/**
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
* `font-size` values of the `input`, it causes the cursor style of the
* decrement button to change from `default` to `text`.
*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
* (include `-moz` to future-proof).
*/
input[type="search"] {
-webkit-appearance: textfield; /* 1 */
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box; /* 2 */
box-sizing: content-box;
}
/**
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
* Safari (but not Chrome) clips the cancel button when the search input has
* padding (and `textfield` appearance).
*/
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* Define consistent border, margin, and padding.
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/**
* 1. Correct `color` not being inherited in IE 8/9/10/11.
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
*/
legend {
border: 0; /* 1 */
padding: 0; /* 2 */
}
/**
* Remove default vertical scrollbar in IE 8/9/10/11.
*/
textarea {
overflow: auto;
}
/**
* Don't inherit the `font-weight` (applied by a rule above).
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
*/
optgroup {
font-weight: bold;
}
/* Tables
========================================================================== */
/**
* Remove most spacing between table cells.
*/
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}

1
tmpl/robots.txt Normal file
View File

@ -0,0 +1 @@
User-Agent: *

12
tmpl/sitemap.xml Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
<loc>http://www.awesome-go.com/</loc>
<lastmod>2016-10-10T07:39:03+00:00</lastmod>
</url>
</urlset>

34
tmpl/tmpl.html vendored Normal file
View File

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Language" content="en">
<meta name="viewport" content="width=device-width">
<title>Awesome Go</title>
<meta name="description" content="A curated list of awesome Go frameworks, libraries and software">
<meta name="keywords" content="golang, go, awesome, awesome-go, go framework, golang framework">
<link rel="stylesheet" type="text/css" href="/assets/fonts/firasans.css">
<link rel="stylesheet" type="text/css" href="/assets/normalize.css">
<link rel="stylesheet" type="text/css" href="/assets/awesome-go.css">
</head>
<body>
<img src="/assets/logo.png" alt="Awesome Go" class="awesome-logo" />
<div id="content">
{{.Body}}
</div>
<script src="/assets/jquery-custom.min.js"></script>
<script src="/assets/marked.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-85465107-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>