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 {{ 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" }}

{{ .Key }}

@@ -280,44 +314,43 @@ your list templates: {{ end }} ``` +{{% /code %}} ### Reversing Key Order -The ordering of the groups is performed by keys in alphanumeric order (A–Z, -1–100) and in reverse chronological order (newest first) for dates. +The ordering of the groups is performed by keys in alphanumeric order (A–Z, 1–100) and in reverse chronological order (newest first) for dates. -While these are logical defaults, they are not always the desired order. There -are two different syntaxes to change the order; they both work the same way, so -it’s really just a matter of preference. +While these are logical defaults, they are not always the desired order. There are two different syntaxes to change the order, both of which work the same way. You can use your preferred syntax. -#### Reverse method +#### Reverse Method -```golang +```html {{ range (.Data.Pages.GroupBy "Section").Reverse }} ``` -```golang +```html {{ range (.Data.Pages.GroupByDate "2006-01").Reverse }} ``` -#### Providing the (alternate) direction +#### Providing the Alternate Direction -```golang +```html {{ range .Data.Pages.GroupByDate "2006-01" "asc" }} ``` -```golang +```html {{ range .Data.Pages.GroupBy "Section" "desc" }} ``` -### Ordering Pages within Group +### Ordering Within Groups -Because Grouping returns a key and a slice of pages, all of the ordering methods listed above are available. +Because Grouping returns a `{{.Key}}` and a slice of pages, all of the ordering methods listed above are available. -In this example, I’ve ordered the groups in chronological ordering and the content -within each group in alphabetical order by title. +In the following example, groups are ordered chronologically and then content +within each group is ordered alphabetically by title. +{{% code file="layouts/partials/by-group-by-page.html" %}} ```html {{ range .Data.Pages.GroupByDate "2006-01" "asc" }}

{{ .Key }}

@@ -331,17 +364,18 @@ within each group in alphabetical order by title. {{ end }} ``` +{{% /code %}} -## Filtering and Limiting List Content +## Filtering and Limiting Lists -Sometimes you only want to list a subset of the available content. A common request is to only display “Posts” on the homepage. Using the `where` function, you can do just that. +Sometimes you only want to list a subset of the available content. A common request is to only display “Posts” on the homepage. You can accomplish this with the `where` function. ### `where` `where` works in a similar manner to the `where` keyword in SQL. It selects all elements of the array or slice that match the provided field and value. `where` takes three arguments: 1. `array` or a `slice of maps or structs` -2. `key` or `field name' +2. `key` or `field name` 3. `match value` {{% code file="layouts/_default/.html" %}} diff --git a/data/homepagefeatures.toml b/data/homepagefeatures.toml index 2434ede9c..e49e13e90 100644 --- a/data/homepagefeatures.toml +++ b/data/homepagefeatures.toml @@ -1,29 +1,29 @@ [[feature]] name = "Blistering Speed" - description = "Golang's baked-in concurrency is the backbone of Hugo's templating. Jettison expensive runtime dependencies, and let Go's incomparable I/O primitives do the work for you. For the first time, your rendering speeds can be measured in micro- and milliseconds." + description = "Jettison expensive runtime dependencies, and let Go's incomparable I/O primitives do the work for you. For the first time, build your sites in micro- and milliseconds." order = 1 [[feature]] name = "Markdown Without Limits" - description = "Hugo natively supports GFM, as well as Asciidoc, reStructuredText, and Org-mode through external helpers. Shortcodes, a minimalist intermediary to your templating and content, keeps your source clean, readable, and infinitely extensible." + description = "Hugo natively supports GFM, as well as Asciidoc, reStructuredText, and Org-mode through external helpers. Shortcodes keeps your content readable and infinitely extensible." order = 2 [[feature]] name = "Robust Content Management" - description = "You need more than front matter to make static scalable. Hugo offers support for taxonomies, unlimited content types, DRY templating, URL management, menus, archetypes, summaries, and so much more, all without the need for plugins." + description = "Hugo offers support for taxonomies, unlimited content types, DRY templating, URL management, menus, archetypes, and summaries, all without the need for plugins." order = 3 [[feature]] - name = "Cross-Platform by Default" - description = "As a single binary, Hugo has equally simple installation on OS X, Linux BSD, Windows, Dragonfly BSD, OpenBSD, Plan 9, and any other platform where the Go compiler tool chain can run. Once you decide you want Hugo, simply `go``get` it." + name = "Cross-Platform" + description = "Hugo has equally simple installation on OS X, Linux BSD, Windows, Dragonfly BSD, OpenBSD, Plan 9, and anywhere else the Go compiler tool chain can run." order = 4 [[feature]] name = "Multilingual and i18n" - description = "International and multilingual sites are often difficult in our new static world. Hugo provides full i18n support for multilinguage sites with the same straightforward and extraordinarily fast experience Hugo users love in their single-language sites." + description = "Hugo provides full i18n support for multilinguage sites with the same straightforward development experience Hugo users love in single-language sites." order = 5 [[feature]] name = "A Passionate Community" - description = "The gratification of an ultra-fast feedback loop doesn't stop at the templating layer. Our community grows stronger and larger every day. Just one visit to our [forums](https://discuss.gohugo.io) and you'll quickly realize you never need to build a Hugo site alone." + description = "The gratification of an ultra-fast feedback loop doesn't stop at the templating layer. One visit to the forums shows you never have to build Hugo sites alone." order = 6 \ No newline at end of file diff --git a/layouts/partials/homepage/homepage-install.html b/layouts/partials/homepage/homepage-install.html index ad72036b2..07d2dc858 100644 --- a/layouts/partials/homepage/homepage-install.html +++ b/layouts/partials/homepage/homepage-install.html @@ -9,7 +9,7 @@

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