mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-07 16:33:40 +00:00
Markdown to html, generate page to awesome-go.com (#1127)
* initial version html generate After being made to change the master generate html based on markdown, ref #363 * change package name, repo to main * up port 80 on caddy server * install mux on travis build * generate sitemap * added robots.txt * set metatags on html page * update repo via exec get the most current readme * remove unnecessary lowdash assign * fix linter errors, remove unnecessary conversion, add binary to .gitignore * fix fonts, use domain-level assets
This commit is contained in:
parent
ff219e23d9
commit
d6a65b74e1
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
tmpl/index.html
|
||||||
|
awesome-go
|
@ -8,4 +8,4 @@ sudo: false
|
|||||||
install:
|
install:
|
||||||
- go get github.com/russross/blackfriday
|
- go get github.com/russross/blackfriday
|
||||||
- go get github.com/PuerkitoBio/goquery
|
- go get github.com/PuerkitoBio/goquery
|
||||||
|
- go get github.com/gorilla/mux
|
||||||
|
8
Dockerfile
Normal file
8
Dockerfile
Normal 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"]
|
15
docker-compose.yml
Normal file
15
docker-compose.yml
Normal 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
|
42
repo.go
42
repo.go
@ -1 +1,41 @@
|
|||||||
package repo
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io/ioutil"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
"os/exec"
|
||||||
|
"text/template"
|
||||||
|
|
||||||
|
"github.com/gorilla/mux"
|
||||||
|
"github.com/russross/blackfriday"
|
||||||
|
)
|
||||||
|
|
||||||
|
type content struct {
|
||||||
|
Body string
|
||||||
|
}
|
||||||
|
|
||||||
|
func generateHTML() {
|
||||||
|
// Update repo
|
||||||
|
exec.Command("git", "checkout", "-f").Output()
|
||||||
|
exec.Command("git", "pull").Output()
|
||||||
|
|
||||||
|
input, _ := ioutil.ReadFile("./README.md")
|
||||||
|
body := string(blackfriday.MarkdownCommon(input))
|
||||||
|
c := &content{Body: body}
|
||||||
|
|
||||||
|
t := template.Must(template.ParseFiles("tmpl/tmpl.html"))
|
||||||
|
f, _ := os.Create("tmpl/index.html")
|
||||||
|
t.Execute(f, c)
|
||||||
|
}
|
||||||
|
|
||||||
|
func hookHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
go generateHTML()
|
||||||
|
w.Write([]byte("Done!\n"))
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
r := mux.NewRouter()
|
||||||
|
r.HandleFunc("/hook", hookHandler)
|
||||||
|
http.ListenAndServe(":9000", r)
|
||||||
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package repo
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
43
tmpl/assets/awesome-go.css
Normal file
43
tmpl/assets/awesome-go.css
Normal 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
Normal file
140
tmpl/assets/fonts/firasans.css
Normal 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;
|
||||||
|
}
|
BIN
tmpl/assets/fonts/firasans.ttf
Normal file
BIN
tmpl/assets/fonts/firasans.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasans.woff
Normal file
BIN
tmpl/assets/fonts/firasans.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasans.woff2
Normal file
BIN
tmpl/assets/fonts/firasans.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbold.ttf
Normal file
BIN
tmpl/assets/fonts/firasansbold.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbold.woff
Normal file
BIN
tmpl/assets/fonts/firasansbold.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbold.woff2
Normal file
BIN
tmpl/assets/fonts/firasansbold.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbolditalic.ttf
Normal file
BIN
tmpl/assets/fonts/firasansbolditalic.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbolditalic.woff
Normal file
BIN
tmpl/assets/fonts/firasansbolditalic.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbolditalic.woff2
Normal file
BIN
tmpl/assets/fonts/firasansbolditalic.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbook.ttf
Normal file
BIN
tmpl/assets/fonts/firasansbook.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbook.woff
Normal file
BIN
tmpl/assets/fonts/firasansbook.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbook.woff2
Normal file
BIN
tmpl/assets/fonts/firasansbook.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbookitalic.ttf
Normal file
BIN
tmpl/assets/fonts/firasansbookitalic.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbookitalic.woff
Normal file
BIN
tmpl/assets/fonts/firasansbookitalic.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansbookitalic.woff2
Normal file
BIN
tmpl/assets/fonts/firasansbookitalic.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansextralight.ttf
Normal file
BIN
tmpl/assets/fonts/firasansextralight.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansextralight.woff
Normal file
BIN
tmpl/assets/fonts/firasansextralight.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansextralight.woff2
Normal file
BIN
tmpl/assets/fonts/firasansextralight.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansextralightitalic.ttf
Normal file
BIN
tmpl/assets/fonts/firasansextralightitalic.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansextralightitalic.woff
Normal file
BIN
tmpl/assets/fonts/firasansextralightitalic.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansextralightitalic.woff2
Normal file
BIN
tmpl/assets/fonts/firasansextralightitalic.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansitalic.ttf
Normal file
BIN
tmpl/assets/fonts/firasansitalic.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansitalic.woff
Normal file
BIN
tmpl/assets/fonts/firasansitalic.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansitalic.woff2
Normal file
BIN
tmpl/assets/fonts/firasansitalic.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanslight.ttf
Normal file
BIN
tmpl/assets/fonts/firasanslight.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanslight.woff
Normal file
BIN
tmpl/assets/fonts/firasanslight.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanslight.woff2
Normal file
BIN
tmpl/assets/fonts/firasanslight.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanslightitalic.ttf
Normal file
BIN
tmpl/assets/fonts/firasanslightitalic.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanslightitalic.woff
Normal file
BIN
tmpl/assets/fonts/firasanslightitalic.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanslightitalic.woff2
Normal file
BIN
tmpl/assets/fonts/firasanslightitalic.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansmedium.ttf
Normal file
BIN
tmpl/assets/fonts/firasansmedium.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansmedium.woff
Normal file
BIN
tmpl/assets/fonts/firasansmedium.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansmedium.woff2
Normal file
BIN
tmpl/assets/fonts/firasansmedium.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansmediumitalic.ttf
Normal file
BIN
tmpl/assets/fonts/firasansmediumitalic.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansmediumitalic.woff
Normal file
BIN
tmpl/assets/fonts/firasansmediumitalic.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasansmediumitalic.woff2
Normal file
BIN
tmpl/assets/fonts/firasansmediumitalic.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanssemibold.ttf
Normal file
BIN
tmpl/assets/fonts/firasanssemibold.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanssemibold.woff
Normal file
BIN
tmpl/assets/fonts/firasanssemibold.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanssemibold.woff2
Normal file
BIN
tmpl/assets/fonts/firasanssemibold.woff2
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanssemibolditalic.ttf
Normal file
BIN
tmpl/assets/fonts/firasanssemibolditalic.ttf
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanssemibolditalic.woff
Normal file
BIN
tmpl/assets/fonts/firasanssemibolditalic.woff
Normal file
Binary file not shown.
BIN
tmpl/assets/fonts/firasanssemibolditalic.woff2
Normal file
BIN
tmpl/assets/fonts/firasanssemibolditalic.woff2
Normal file
Binary file not shown.
5
tmpl/assets/jquery-custom.min.js
vendored
Normal file
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
Normal file
BIN
tmpl/assets/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.4 KiB |
1286
tmpl/assets/marked.js
Normal file
1286
tmpl/assets/marked.js
Normal file
File diff suppressed because it is too large
Load Diff
425
tmpl/assets/normalize.css
vendored
Normal file
425
tmpl/assets/normalize.css
vendored
Normal 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
1
tmpl/robots.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
User-Agent: *
|
12
tmpl/sitemap.xml
Normal file
12
tmpl/sitemap.xml
Normal 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
Normal file
34
tmpl/tmpl.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user