From f7f61514f57a77b09f7260ae6a76f134bdc62690 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Wed, 16 Nov 2016 15:49:10 +1100 Subject: template: use Go font These fonts are available under the usual license at golang.org/x/image/font/gofont Change-Id: Ifeb5c3478bc6752b75f1d1128d05141d7bc4a45e Reviewed-on: https://go-review.googlesource.com/33259 Reviewed-by: Rob Pike --- static/Go-Bold.woff | Bin 0 -> 36532 bytes static/Go-BoldItalic.woff | Bin 0 -> 39416 bytes static/Go-Italic.woff | Bin 0 -> 39852 bytes static/GoMedium-Italic.woff | Bin 0 -> 45996 bytes static/GoMedium.woff | Bin 0 -> 42316 bytes static/GoMono-Bold.woff | Bin 0 -> 39200 bytes static/GoMono-BoldItalic.woff | Bin 0 -> 42968 bytes static/GoMono-Italic.woff | Bin 0 -> 42912 bytes static/GoMono.woff | Bin 0 -> 39336 bytes static/GoRegular.woff | Bin 0 -> 36928 bytes static/fonts.css | 69 ++++++++++++++++++++++++++++++++++++++++++ template/root.tmpl | 7 +++++ 12 files changed, 76 insertions(+) create mode 100644 static/Go-Bold.woff create mode 100644 static/Go-BoldItalic.woff create mode 100644 static/Go-Italic.woff create mode 100644 static/GoMedium-Italic.woff create mode 100644 static/GoMedium.woff create mode 100644 static/GoMono-Bold.woff create mode 100644 static/GoMono-BoldItalic.woff create mode 100644 static/GoMono-Italic.woff create mode 100644 static/GoMono.woff create mode 100644 static/GoRegular.woff create mode 100644 static/fonts.css diff --git a/static/Go-Bold.woff b/static/Go-Bold.woff new file mode 100644 index 0000000..9e20c5d Binary files /dev/null and b/static/Go-Bold.woff differ diff --git a/static/Go-BoldItalic.woff b/static/Go-BoldItalic.woff new file mode 100644 index 0000000..02af73a Binary files /dev/null and b/static/Go-BoldItalic.woff differ diff --git a/static/Go-Italic.woff b/static/Go-Italic.woff new file mode 100644 index 0000000..ac68078 Binary files /dev/null and b/static/Go-Italic.woff differ diff --git a/static/GoMedium-Italic.woff b/static/GoMedium-Italic.woff new file mode 100644 index 0000000..49c509c Binary files /dev/null and b/static/GoMedium-Italic.woff differ diff --git a/static/GoMedium.woff b/static/GoMedium.woff new file mode 100644 index 0000000..2541515 Binary files /dev/null and b/static/GoMedium.woff differ diff --git a/static/GoMono-Bold.woff b/static/GoMono-Bold.woff new file mode 100644 index 0000000..f636e56 Binary files /dev/null and b/static/GoMono-Bold.woff differ diff --git a/static/GoMono-BoldItalic.woff b/static/GoMono-BoldItalic.woff new file mode 100644 index 0000000..3d977e0 Binary files /dev/null and b/static/GoMono-BoldItalic.woff differ diff --git a/static/GoMono-Italic.woff b/static/GoMono-Italic.woff new file mode 100644 index 0000000..9544027 Binary files /dev/null and b/static/GoMono-Italic.woff differ diff --git a/static/GoMono.woff b/static/GoMono.woff new file mode 100644 index 0000000..f7e5ffe Binary files /dev/null and b/static/GoMono.woff differ diff --git a/static/GoRegular.woff b/static/GoRegular.woff new file mode 100644 index 0000000..5292f4a Binary files /dev/null and b/static/GoRegular.woff differ diff --git a/static/fonts.css b/static/fonts.css new file mode 100644 index 0000000..5edf1fa --- /dev/null +++ b/static/fonts.css @@ -0,0 +1,69 @@ +@font-face { + font-family: 'Go'; + src: url('GoMedium-Italic.woff') format('woff'); + font-weight: 500; + font-style: italic; +} + +@font-face { + font-family: 'Go'; + src: url('Go-Italic.woff') format('woff'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'Go'; + src: url('Go-Bold.woff') format('woff'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'Go'; + src: url('GoMedium.woff') format('woff'); + font-weight: 500; + font-style: normal; +} + +@font-face { + font-family: 'Go'; + src: url('Go-BoldItalic.woff') format('woff'); + font-weight: bold; + font-style: italic; +} + +@font-face { + font-family: 'Go'; + src: url('GoRegular.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Go Mono'; + src: url('GoMono-Bold.woff') format('woff'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'Go Mono'; + src: url('GoMono.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Go Mono'; + src: url('GoMono-Italic.woff') format('woff'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'Go Mono'; + src: url('GoMono-BoldItalic.woff') format('woff'); + font-weight: bold; + font-style: italic; +} diff --git a/template/root.tmpl b/template/root.tmpl index 2fa81d0..2c4d114 100644 --- a/template/root.tmpl +++ b/template/root.tmpl @@ -9,6 +9,7 @@ {{template "title" .}} + -- cgit v1.2.3