aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2016-11-16 15:49:10 +1100
committerAndrew Gerrand <adg@golang.org>2016-11-17 02:13:51 +0000
commitf7f61514f57a77b09f7260ae6a76f134bdc62690 (patch)
tree732a26233fe1c9ed339acb8cd3359a215f7862ac
parentf4ed982331791bb33611d99b15517073ce675606 (diff)
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 <r@golang.org>
-rw-r--r--static/Go-Bold.woffbin0 -> 36532 bytes
-rw-r--r--static/Go-BoldItalic.woffbin0 -> 39416 bytes
-rw-r--r--static/Go-Italic.woffbin0 -> 39852 bytes
-rw-r--r--static/GoMedium-Italic.woffbin0 -> 45996 bytes
-rw-r--r--static/GoMedium.woffbin0 -> 42316 bytes
-rw-r--r--static/GoMono-Bold.woffbin0 -> 39200 bytes
-rw-r--r--static/GoMono-BoldItalic.woffbin0 -> 42968 bytes
-rw-r--r--static/GoMono-Italic.woffbin0 -> 42912 bytes
-rw-r--r--static/GoMono.woffbin0 -> 39336 bytes
-rw-r--r--static/GoRegular.woffbin0 -> 36928 bytes
-rw-r--r--static/fonts.css69
-rw-r--r--template/root.tmpl7
12 files changed, 76 insertions, 0 deletions
diff --git a/static/Go-Bold.woff b/static/Go-Bold.woff
new file mode 100644
index 0000000..9e20c5d
--- /dev/null
+++ b/static/Go-Bold.woff
Binary files differ
diff --git a/static/Go-BoldItalic.woff b/static/Go-BoldItalic.woff
new file mode 100644
index 0000000..02af73a
--- /dev/null
+++ b/static/Go-BoldItalic.woff
Binary files differ
diff --git a/static/Go-Italic.woff b/static/Go-Italic.woff
new file mode 100644
index 0000000..ac68078
--- /dev/null
+++ b/static/Go-Italic.woff
Binary files differ
diff --git a/static/GoMedium-Italic.woff b/static/GoMedium-Italic.woff
new file mode 100644
index 0000000..49c509c
--- /dev/null
+++ b/static/GoMedium-Italic.woff
Binary files differ
diff --git a/static/GoMedium.woff b/static/GoMedium.woff
new file mode 100644
index 0000000..2541515
--- /dev/null
+++ b/static/GoMedium.woff
Binary files differ
diff --git a/static/GoMono-Bold.woff b/static/GoMono-Bold.woff
new file mode 100644
index 0000000..f636e56
--- /dev/null
+++ b/static/GoMono-Bold.woff
Binary files differ
diff --git a/static/GoMono-BoldItalic.woff b/static/GoMono-BoldItalic.woff
new file mode 100644
index 0000000..3d977e0
--- /dev/null
+++ b/static/GoMono-BoldItalic.woff
Binary files differ
diff --git a/static/GoMono-Italic.woff b/static/GoMono-Italic.woff
new file mode 100644
index 0000000..9544027
--- /dev/null
+++ b/static/GoMono-Italic.woff
Binary files differ
diff --git a/static/GoMono.woff b/static/GoMono.woff
new file mode 100644
index 0000000..f7e5ffe
--- /dev/null
+++ b/static/GoMono.woff
Binary files differ
diff --git a/static/GoRegular.woff b/static/GoRegular.woff
new file mode 100644
index 0000000..5292f4a
--- /dev/null
+++ b/static/GoRegular.woff
Binary files 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 @@
<meta name="theme-color" content="#375EAB">
<title>{{template "title" .}}</title>
<link type="text/css" rel="stylesheet" href="/lib/godoc/style.css">
+ <link type="text/css" rel="stylesheet" href="/static/fonts.css">
<link rel="alternate" type="application/atom+xml" title="blog.golang.org - Atom Feed" href="//blog.golang.org/feed.atom" />
<script type="text/javascript">window.initFuncs = [];</script>
<style>
@@ -48,6 +49,12 @@
#content img {
max-width: 100%;
}
+ body {
+ font-family: Go, Arial, sans-serif;
+ }
+ pre, code {
+ font-family: Go Mono, Menlo, monospace;
+ }
</style>
</head>
<body>