diff --git a/config.toml b/config.toml
index 31e693224..36110e119 100644
--- a/config.toml
+++ b/config.toml
@@ -97,5 +97,4 @@ watch = true
latexDashes = true
[taxonomies]
- tag = "tags"
- category = ""
\ No newline at end of file
+ tag = "tags"
\ No newline at end of file
diff --git a/content/showcase/justinrobertsbook.md b/content/showcase/justinrobertsbook.md
new file mode 100644
index 000000000..94f0762e5
--- /dev/null
+++ b/content/showcase/justinrobertsbook.md
@@ -0,0 +1,13 @@
+---
+date: 2017-03-08T07:32:00Z
+description: "Official site for Justin Roberts' new book, Best Seat in the House"
+license: ""
+licenseLink: ""
+sitelink: https://justinrobertsbook.com
+sourceLink:
+tags:
+- single page
+- book
+image: justinrobertsbook.jpg
+title: Best Seat in the House
+---
\ No newline at end of file
diff --git a/content/showcase/myearworms.md b/content/showcase/myearworms.md
new file mode 100644
index 000000000..4a95f5ef8
--- /dev/null
+++ b/content/showcase/myearworms.md
@@ -0,0 +1,14 @@
+---
+date: 2017-03-08T07:32:00Z
+description: "All the songs that get stuck in my head"
+license: ""
+licenseLink: ""
+sitelink: https://myearworms.com/
+sourceLink: https://github.com/jaydreyer/myearworms
+tags:
+- personal
+- blog
+- music
+image: myearworms.jpg
+title: My Earworms
+---
\ No newline at end of file
diff --git a/content/templates/ordering-and-grouping.md b/content/templates/ordering-and-grouping.md
index cf1241fcb..737a0b365 100644
--- a/content/templates/ordering-and-grouping.md
+++ b/content/templates/ordering-and-grouping.md
@@ -11,18 +11,15 @@ weight: 27
draft: false
aliases: [/templates/ordering/,/templates/grouping/]
toc: true
-wip: true
---
-## Understanding `.Data.Pages`
+In Hugo, A list template is any template that will be used to render multiple pieces of content in a single HTML page.
-From this image, we can assume that the "homepage" for Section A---presumably, `/section-a/index.html`---is going to list the content pages 1,2,3. In this way, pages 1,2,3 are *data* made available to the template that renders to the .
+## Examples of List Templates
-## Example List Template Pages
+### Section Template: `post.html`
-### Example Section Template: `post.html`
-
-This content template is used for [spf13.com](http://spf13.com/). It makes use of [partial templates][partials]. All examples use a [view](/templates/views/) called either "li" or "summary" which this example site defined.
+This list template is used for [spf13.com](http://spf13.com/). It makes use of [partial templates][partials]. All examples use a [view](/templates/views/) called either "li" or "summary."
{{% code file="layouts/section/post.html" %}}
```html
@@ -43,9 +40,7 @@ This content template is used for [spf13.com](http://spf13.com/). It makes use o
```
{{% /code %}}
-### Example Taxonomy Template
-
-The following taxonomy template uses a [content view template][views] called either "li" or "summary" which this example site defined.
+### Taxonomy Template
{{% code file="layouts/_default/taxonomies.html" download="taxonomies.html" %}}
```html
@@ -64,14 +59,14 @@ The following taxonomy template uses a [content view template][views] called eit
## Ordering Content
-In the case of Hugo, each list will render the content based on metadata provided in the [front matter](/content/front-matter/). See [ordering content](/content/ordering/) for more information.
+Hugo lists render the content based on metadata provided in the [front matter](/content-management/front-matter/)..
Here are a variety of different ways you can order the content items in
your list templates:
-### Default Ordering: Weight > Date
+### Default: Weight > Date
-{{% code file="layouts/_default/list.html" %}}
+{{% code file="layouts/partials/order-default.html" %}}
```html
{{ range .Data.Pages }}
@@ -84,8 +79,9 @@ your list templates:
```
{{% /code %}}
-### Ordering a list by Weight -> Date
+### By Weight
+{{% code file="layouts/partials/by-weight.html" %}}
```html
{{ range .Data.Pages.ByWeight }}
-
@@ -94,97 +90,129 @@ your list templates:
{{ end }}
```
+{{% /code %}}
-### Ordering a List by Date
+### By Date
- {{ range .Data.Pages.ByDate }}
+{{% code file="layouts/partials/by-date.html" %}}
+```html
+{{ range .Data.Pages.ByDate }}
-
{{ .Title }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
- {{ end }}
+{{ end }}
+```
+{{% /code %}}
-### Ordering a List by PublishDate
+### By Publish Date
- {{ range .Data.Pages.ByPublishDate }}
+{{% code file="layouts/partials/by-publish-date.html" %}}
+```html
+{{ range .Data.Pages.ByPublishDate }}
-
{{ .Title }}
{{ .PublishDate.Format "Mon, Jan 2, 2006" }}
- {{ end }}
+{{ end }}
+```
+{{% /code %}}
-### Ordering a list by ExpiryDate
+### By Expiration Date
- {{ range .Data.Pages.ByExpiryDate }}
+{{% code file="layouts/partials/by-expiry-date.html" %}}
+```html
+{{ range .Data.Pages.ByExpiryDate }}
-
{{ .Title }}
{{ .ExpiryDate.Format "Mon, Jan 2, 2006" }}
- {{ end }}
+{{ end }}
+```
+{{% /code %}}
-### Ordering a List by Lastmod
+### By Last Modified Date
- {{ range .Data.Pages.ByLastmod }}
+{{% code file="layouts/partials/by-last-mod.html" %}}
+```html
+{{ range .Data.Pages.ByLastmod }}
-
{{ .Title }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
- {{ end }}
+{{ end }}
+```
+{{% /code %}}
-### Ordering a List by Length
+### By Length
- {{ range .Data.Pages.ByLength }}
+{{% code file="layouts/partials/by-length.html" %}}
+```html
+{{ range .Data.Pages.ByLength }}
-
{{ .Title }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
- {{ end }}
+{{ end }}
+```
+{{% /code %}}
-### Ordering a List by Title
+### By Title
- {{ range .Data.Pages.ByTitle }}
+{{% code file="layouts/partials/by-title.html" %}}
+```html
+{{ range .Data.Pages.ByTitle }}
-
{{ .Title }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
- {{ end }}
+{{ end }}
+```
+{{% /code %}}
-### Ordering a List by LinkTitle
+### By Link Title
- {{ range .Data.Pages.ByLinkTitle }}
+{{% code file="layouts/partials/by-link-title.html" %}}
+{{ range .Data.Pages.ByLinkTitle }}
-
{{ .LinkTitle }}
{{ .Date.Format "Mon, Jan 2, 2006" }}
- {{ end }}
+{{ end }}
+{{% /code %}}
-### Order List by Parameter
+### By Parameter
-Order based on the specified front matter parameter. Pages without that
-parameter will use the site's `.Site.Params` default. If the parameter is not
-found at all in some entries, those entries will appear together at the end
-of the ordering.
+Order based on the specified front matter parameter. Content that does not have the specified front matter field will use the site's `.Site.Params` default. If the parameter is not found at all in some entries, those entries will appear together at the end of the ordering.
The below example sorts a list of posts by their rating.
- {{ range (.Data.Pages.ByParam "rating") }}
-
- {{ end }}
+{{% code file="layouts/partials/by-rating.html" %}}
+```html
+{{ range (.Data.Pages.ByParam "rating") }}
+
+{{ end }}
+```
+{{% /code %}}
If the front matter field of interest is nested beneath another field, you can
also get it:
-```
+{{% code file="layouts/partials/by-nested-param.html" %}}
+```html
{{ range (.Date.Pages.ByParam "author.last_name") }}
{{ end }}
```
+{{% /code %}}
### Reverse Order
-Can be applied to any of the above. Using Date for an example.
-```
+Reversing order can be applied to any of the above methods. The following uses `ByDate` as an example:
+
+{{% code file="layouts/partials/by-date-reverse.html" %}}
+```html
{{ range .Data.Pages.ByDate.Reverse }}
-
{{ .Title }}
@@ -192,18 +220,16 @@ Can be applied to any of the above. Using Date for an example.
{{ end }}
```
+{{% /code %}}
## Grouping Content
-Hugo provides some grouping functions for list pages. You can use them to
-group pages by Section, Type, Date etc.
+Hugo provides some functions for grouping pages by Section, Type, Date, etc.
-Here are a variety of different ways you can group the content items in
-your list templates:
+### By Page Field
-### Grouping by Page field
-
-```
+{{% code file="layouts/partials/by-page-field.html" %}}
+```html
{{ range .Data.Pages.GroupBy "Section" }}
{{ .Key }}
@@ -216,10 +242,12 @@ your list templates:
{{ end }}
```
+{{% /code %}}
-### Grouping by Page date
+### By Page date
-```
+{{% code file="layouts/partials/by-page-date.html" %}}
+```html
{{ range .Data.Pages.GroupByDate "2006-01" }}
{{ .Key }}
@@ -232,10 +260,12 @@ your list templates:
{{ end }}
```
+{{% /code %}}
-### Grouping by Page publish date
+### By Page publish date
-```
+{{% code file="layouts/partials/by-page-publish-date.html" %}}
+```html
{{ range .Data.Pages.GroupByPublishDate "2006-01" }}
{{ .Key }}
@@ -248,9 +278,11 @@ your list templates:
{{ end }}
```
+{{% /code %}}
-### Grouping by Page param
+### By Page Param
+{{% code file="layouts/partials/by-page-param.html" %}}
```html
{{ range .Data.Pages.GroupByParam "param_key" }}
{{ .Key }}
@@ -264,9 +296,11 @@ your list templates:
{{ end }}
```
+{{% /code %}}
-### Grouping by Page param in date format
+### By Page Param in Date Format
+{{% code file="layouts/partials/by-page-param-as-date.html" %}}
```html
{{ range .Data.Pages.GroupByParamDate "param_key" "2006-01" }}
Install in minutes and start building websites in (milli)seconds.
-
Hugo works on OSX, Windows, Linux, FreeBSD, and anywhere else where the Go compiler tool chain can run.
+
Hugo works on OS X, Windows, Linux, FreeBSD, and anywhere the Go compiler tool chain can run.
diff --git a/static/fonts/robotocondensed/robotocondensed-300-italic-webfont.ttf b/static/fonts/robotocondensed/robotocondensed-300-italic-webfont.ttf
new file mode 100644
index 000000000..da108d3aa
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-300-italic-webfont.ttf differ
diff --git a/static/fonts/robotocondensed/robotocondensed-300-italic-webfont.woff b/static/fonts/robotocondensed/robotocondensed-300-italic-webfont.woff
new file mode 100755
index 000000000..738a6ba34
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-300-italic-webfont.woff differ
diff --git a/static/fonts/robotocondensed/robotocondensed-300-italic-webfont.woff2 b/static/fonts/robotocondensed/robotocondensed-300-italic-webfont.woff2
new file mode 100755
index 000000000..ae563bf27
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-300-italic-webfont.woff2 differ
diff --git a/static/fonts/robotocondensed/robotocondensed-300-webfont.ttf b/static/fonts/robotocondensed/robotocondensed-300-webfont.ttf
new file mode 100644
index 000000000..2dae31e28
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-300-webfont.ttf differ
diff --git a/static/fonts/robotocondensed/robotocondensed-300-webfont.woff b/static/fonts/robotocondensed/robotocondensed-300-webfont.woff
new file mode 100755
index 000000000..1cdd10e0d
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-300-webfont.woff differ
diff --git a/static/fonts/robotocondensed/robotocondensed-300-webfont.woff2 b/static/fonts/robotocondensed/robotocondensed-300-webfont.woff2
new file mode 100755
index 000000000..d4b607a2c
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-300-webfont.woff2 differ
diff --git a/static/fonts/robotocondensed/robotocondensed-400-italic-webfont.ttf b/static/fonts/robotocondensed/robotocondensed-400-italic-webfont.ttf
new file mode 100644
index 000000000..97ff9f1ed
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-400-italic-webfont.ttf differ
diff --git a/static/fonts/robotocondensed/robotocondensed-400-italic-webfont.woff b/static/fonts/robotocondensed/robotocondensed-400-italic-webfont.woff
new file mode 100755
index 000000000..78adb6b8f
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-400-italic-webfont.woff differ
diff --git a/static/fonts/robotocondensed/robotocondensed-400-italic-webfont.woff2 b/static/fonts/robotocondensed/robotocondensed-400-italic-webfont.woff2
new file mode 100755
index 000000000..8ecb380d6
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-400-italic-webfont.woff2 differ
diff --git a/static/fonts/robotocondensed/robotocondensed-400-webfont.ttf b/static/fonts/robotocondensed/robotocondensed-400-webfont.ttf
new file mode 100644
index 000000000..c2304c14a
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-400-webfont.ttf differ
diff --git a/static/fonts/robotocondensed/robotocondensed-400-webfont.woff b/static/fonts/robotocondensed/robotocondensed-400-webfont.woff
new file mode 100755
index 000000000..9ba649768
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-400-webfont.woff differ
diff --git a/static/fonts/robotocondensed/robotocondensed-400-webfont.woff2 b/static/fonts/robotocondensed/robotocondensed-400-webfont.woff2
new file mode 100755
index 000000000..02262db79
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-400-webfont.woff2 differ
diff --git a/static/fonts/robotocondensed/robotocondensed-700-italic-webfont.ttf b/static/fonts/robotocondensed/robotocondensed-700-italic-webfont.ttf
new file mode 100644
index 000000000..e1a648fff
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-700-italic-webfont.ttf differ
diff --git a/static/fonts/robotocondensed/robotocondensed-700-italic-webfont.woff b/static/fonts/robotocondensed/robotocondensed-700-italic-webfont.woff
new file mode 100755
index 000000000..543ce1777
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-700-italic-webfont.woff differ
diff --git a/static/fonts/robotocondensed/robotocondensed-700-italic-webfont.woff2 b/static/fonts/robotocondensed/robotocondensed-700-italic-webfont.woff2
new file mode 100755
index 000000000..b95cff684
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-700-italic-webfont.woff2 differ
diff --git a/static/fonts/robotocondensed/robotocondensed-700-webfont.ttf b/static/fonts/robotocondensed/robotocondensed-700-webfont.ttf
new file mode 100644
index 000000000..fc28868a8
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-700-webfont.ttf differ
diff --git a/static/fonts/robotocondensed/robotocondensed-700-webfont.woff b/static/fonts/robotocondensed/robotocondensed-700-webfont.woff
new file mode 100755
index 000000000..8884b59fe
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-700-webfont.woff differ
diff --git a/static/fonts/robotocondensed/robotocondensed-700-webfont.woff2 b/static/fonts/robotocondensed/robotocondensed-700-webfont.woff2
new file mode 100755
index 000000000..a94fc24f2
Binary files /dev/null and b/static/fonts/robotocondensed/robotocondensed-700-webfont.woff2 differ
diff --git a/static/images/showcase/justinrobertsbook.jpg b/static/images/showcase/justinrobertsbook.jpg
new file mode 100644
index 000000000..afa082e73
Binary files /dev/null and b/static/images/showcase/justinrobertsbook.jpg differ
diff --git a/static/images/showcase/myearworms.jpg b/static/images/showcase/myearworms.jpg
new file mode 100644
index 000000000..91a6b0f2b
Binary files /dev/null and b/static/images/showcase/myearworms.jpg differ
diff --git a/static/roboto/roboto-100-italic-webfont.ttf b/static/roboto/roboto-100-italic-webfont.ttf
new file mode 100644
index 000000000..07172ff66
Binary files /dev/null and b/static/roboto/roboto-100-italic-webfont.ttf differ
diff --git a/static/roboto/roboto-100-italic-webfont.woff b/static/roboto/roboto-100-italic-webfont.woff
new file mode 100755
index 000000000..5eb1eaf92
Binary files /dev/null and b/static/roboto/roboto-100-italic-webfont.woff differ
diff --git a/static/roboto/roboto-100-italic-webfont.woff2 b/static/roboto/roboto-100-italic-webfont.woff2
new file mode 100755
index 000000000..c4f190dd6
Binary files /dev/null and b/static/roboto/roboto-100-italic-webfont.woff2 differ
diff --git a/static/roboto/roboto-100-webfont.ttf b/static/roboto/roboto-100-webfont.ttf
new file mode 100644
index 000000000..d69555029
Binary files /dev/null and b/static/roboto/roboto-100-webfont.ttf differ
diff --git a/static/roboto/roboto-100-webfont.woff b/static/roboto/roboto-100-webfont.woff
new file mode 100755
index 000000000..c25a8964d
Binary files /dev/null and b/static/roboto/roboto-100-webfont.woff differ
diff --git a/static/roboto/roboto-100-webfont.woff2 b/static/roboto/roboto-100-webfont.woff2
new file mode 100755
index 000000000..1fe93b06c
Binary files /dev/null and b/static/roboto/roboto-100-webfont.woff2 differ
diff --git a/static/roboto/roboto-300-italic-webfont.ttf b/static/roboto/roboto-300-italic-webfont.ttf
new file mode 100644
index 000000000..04cc00230
Binary files /dev/null and b/static/roboto/roboto-300-italic-webfont.ttf differ
diff --git a/static/roboto/roboto-300-italic-webfont.woff b/static/roboto/roboto-300-italic-webfont.woff
new file mode 100755
index 000000000..ab8c0aab2
Binary files /dev/null and b/static/roboto/roboto-300-italic-webfont.woff differ
diff --git a/static/roboto/roboto-300-italic-webfont.woff2 b/static/roboto/roboto-300-italic-webfont.woff2
new file mode 100755
index 000000000..71cef8cb1
Binary files /dev/null and b/static/roboto/roboto-300-italic-webfont.woff2 differ
diff --git a/static/roboto/roboto-300-webfont.ttf b/static/roboto/roboto-300-webfont.ttf
new file mode 100644
index 000000000..94c6bcc67
Binary files /dev/null and b/static/roboto/roboto-300-webfont.ttf differ
diff --git a/static/roboto/roboto-300-webfont.woff b/static/roboto/roboto-300-webfont.woff
new file mode 100755
index 000000000..8474c9c17
Binary files /dev/null and b/static/roboto/roboto-300-webfont.woff differ
diff --git a/static/roboto/roboto-300-webfont.woff2 b/static/roboto/roboto-300-webfont.woff2
new file mode 100755
index 000000000..792ad6476
Binary files /dev/null and b/static/roboto/roboto-300-webfont.woff2 differ
diff --git a/static/roboto/roboto-400-italic-webfont.ttf b/static/roboto/roboto-400-italic-webfont.ttf
new file mode 100644
index 000000000..ff6046d5b
Binary files /dev/null and b/static/roboto/roboto-400-italic-webfont.ttf differ
diff --git a/static/roboto/roboto-400-italic-webfont.woff b/static/roboto/roboto-400-italic-webfont.woff
new file mode 100755
index 000000000..7f70dafdb
Binary files /dev/null and b/static/roboto/roboto-400-italic-webfont.woff differ
diff --git a/static/roboto/roboto-400-italic-webfont.woff2 b/static/roboto/roboto-400-italic-webfont.woff2
new file mode 100755
index 000000000..534ae98d5
Binary files /dev/null and b/static/roboto/roboto-400-italic-webfont.woff2 differ
diff --git a/static/roboto/roboto-400-webfont.ttf b/static/roboto/roboto-400-webfont.ttf
new file mode 100644
index 000000000..8c082c8de
Binary files /dev/null and b/static/roboto/roboto-400-webfont.ttf differ
diff --git a/static/roboto/roboto-400-webfont.woff b/static/roboto/roboto-400-webfont.woff
new file mode 100755
index 000000000..83317250c
Binary files /dev/null and b/static/roboto/roboto-400-webfont.woff differ
diff --git a/static/roboto/roboto-400-webfont.woff2 b/static/roboto/roboto-400-webfont.woff2
new file mode 100755
index 000000000..e078eb412
Binary files /dev/null and b/static/roboto/roboto-400-webfont.woff2 differ
diff --git a/static/roboto/roboto-500-italic-webfont.ttf b/static/roboto/roboto-500-italic-webfont.ttf
new file mode 100644
index 000000000..dc743f0a6
Binary files /dev/null and b/static/roboto/roboto-500-italic-webfont.ttf differ
diff --git a/static/roboto/roboto-500-italic-webfont.woff b/static/roboto/roboto-500-italic-webfont.woff
new file mode 100755
index 000000000..3e90a88a1
Binary files /dev/null and b/static/roboto/roboto-500-italic-webfont.woff differ
diff --git a/static/roboto/roboto-500-italic-webfont.woff2 b/static/roboto/roboto-500-italic-webfont.woff2
new file mode 100755
index 000000000..d766cd0f5
Binary files /dev/null and b/static/roboto/roboto-500-italic-webfont.woff2 differ
diff --git a/static/roboto/roboto-500-webfont.ttf b/static/roboto/roboto-500-webfont.ttf
new file mode 100644
index 000000000..39c63d746
Binary files /dev/null and b/static/roboto/roboto-500-webfont.ttf differ
diff --git a/static/roboto/roboto-500-webfont.woff b/static/roboto/roboto-500-webfont.woff
new file mode 100755
index 000000000..6c0634c80
Binary files /dev/null and b/static/roboto/roboto-500-webfont.woff differ
diff --git a/static/roboto/roboto-500-webfont.woff2 b/static/roboto/roboto-500-webfont.woff2
new file mode 100755
index 000000000..da4ce851b
Binary files /dev/null and b/static/roboto/roboto-500-webfont.woff2 differ
diff --git a/static/roboto/roboto-700-italic-webfont.ttf b/static/roboto/roboto-700-italic-webfont.ttf
new file mode 100644
index 000000000..3c9a7a373
Binary files /dev/null and b/static/roboto/roboto-700-italic-webfont.ttf differ
diff --git a/static/roboto/roboto-700-italic-webfont.woff b/static/roboto/roboto-700-italic-webfont.woff
new file mode 100755
index 000000000..c6bbbf1cf
Binary files /dev/null and b/static/roboto/roboto-700-italic-webfont.woff differ
diff --git a/static/roboto/roboto-700-italic-webfont.woff2 b/static/roboto/roboto-700-italic-webfont.woff2
new file mode 100755
index 000000000..4cba90329
Binary files /dev/null and b/static/roboto/roboto-700-italic-webfont.woff2 differ
diff --git a/static/roboto/roboto-700-webfont.ttf b/static/roboto/roboto-700-webfont.ttf
new file mode 100644
index 000000000..a355c27cd
Binary files /dev/null and b/static/roboto/roboto-700-webfont.ttf differ
diff --git a/static/roboto/roboto-700-webfont.woff b/static/roboto/roboto-700-webfont.woff
new file mode 100755
index 000000000..ea4c15a94
Binary files /dev/null and b/static/roboto/roboto-700-webfont.woff differ
diff --git a/static/roboto/roboto-700-webfont.woff2 b/static/roboto/roboto-700-webfont.woff2
new file mode 100755
index 000000000..686e1f220
Binary files /dev/null and b/static/roboto/roboto-700-webfont.woff2 differ
diff --git a/static/roboto/roboto-900-italic-webfont.ttf b/static/roboto/roboto-900-italic-webfont.ttf
new file mode 100644
index 000000000..60f7782a2
Binary files /dev/null and b/static/roboto/roboto-900-italic-webfont.ttf differ
diff --git a/static/roboto/roboto-900-italic-webfont.woff b/static/roboto/roboto-900-italic-webfont.woff
new file mode 100755
index 000000000..2c9b530d6
Binary files /dev/null and b/static/roboto/roboto-900-italic-webfont.woff differ
diff --git a/static/roboto/roboto-900-italic-webfont.woff2 b/static/roboto/roboto-900-italic-webfont.woff2
new file mode 100755
index 000000000..593d5322b
Binary files /dev/null and b/static/roboto/roboto-900-italic-webfont.woff2 differ
diff --git a/static/roboto/roboto-900-webfont.ttf b/static/roboto/roboto-900-webfont.ttf
new file mode 100644
index 000000000..fbde625d4
Binary files /dev/null and b/static/roboto/roboto-900-webfont.ttf differ
diff --git a/static/roboto/roboto-900-webfont.woff b/static/roboto/roboto-900-webfont.woff
new file mode 100755
index 000000000..3b152bf0d
Binary files /dev/null and b/static/roboto/roboto-900-webfont.woff differ
diff --git a/static/roboto/roboto-900-webfont.woff2 b/static/roboto/roboto-900-webfont.woff2
new file mode 100755
index 000000000..6de2a6c80
Binary files /dev/null and b/static/roboto/roboto-900-webfont.woff2 differ