summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2014-09-02 13:05:20 -0600
committerspf13 <steve.francia@gmail.com>2014-09-02 17:18:22 -0400
commitefc98a3b1fee0069a162801dbdfd8d0694c7a75e (patch)
tree1562d0e1203ee2f23408aa7fab87c91a73770e53 /examples
parent05102f1b79b94b88b60dfcfc00f66cb30ca912c7 (diff)
Update example blog to Hugo v0.12 conventions
- Convert config.yaml to config.toml to follow what "hugo new site /path/to/site" generates - Rename layouts/chrome to layouts/partials - Convert "template" calls to "partial" calls - Minor revisions to the text in example content - Upgrade Bootswatch Yeti theme (3.1.1+1 → to 3.2.0+3) - Upgrade Font Awesome (4.0.3 → 4.2.0) - Upgrade jQuery (1.11.0 → 1.11.1)
Diffstat (limited to 'examples')
-rw-r--r--examples/blog/README.md12
-rw-r--r--examples/blog/config.toml4
-rw-r--r--examples/blog/config.yaml5
-rw-r--r--examples/blog/content/post/another-post.md14
-rw-r--r--examples/blog/content/post/hello-hugo.md20
-rw-r--r--examples/blog/layouts/_default/single.html10
-rw-r--r--examples/blog/layouts/index.html10
-rw-r--r--examples/blog/layouts/indexes/category.html10
-rw-r--r--examples/blog/layouts/indexes/post.html10
-rw-r--r--examples/blog/layouts/indexes/tag.html10
-rw-r--r--examples/blog/layouts/partials/footer.copyright.html (renamed from examples/blog/layouts/chrome/footer.copyright.html)0
-rw-r--r--examples/blog/layouts/partials/footer.html (renamed from examples/blog/layouts/chrome/footer.html)0
-rw-r--r--examples/blog/layouts/partials/header.html (renamed from examples/blog/layouts/chrome/header.html)6
-rw-r--r--examples/blog/layouts/partials/header.includes.html (renamed from examples/blog/layouts/chrome/header.includes.html)0
-rw-r--r--examples/blog/layouts/partials/menu.html (renamed from examples/blog/layouts/chrome/menu.html)4
-rw-r--r--examples/blog/layouts/partials/meta.html (renamed from examples/blog/layouts/chrome/meta.html)0
-rw-r--r--examples/blog/layouts/partials/navbar.html (renamed from examples/blog/layouts/chrome/navbar.html)0
-rw-r--r--examples/blog/layouts/post/single.html10
-rw-r--r--examples/blog/static/css/bootstrap.css4
-rw-r--r--examples/blog/static/css/font-awesome.css454
-rw-r--r--examples/blog/static/fonts/FontAwesome.otfbin62856 -> 85908 bytes
-rw-r--r--examples/blog/static/fonts/fontawesome-webfont.eotbin38205 -> 56006 bytes
-rw-r--r--examples/blog/static/fonts/fontawesome-webfont.svg174
-rw-r--r--examples/blog/static/fonts/fontawesome-webfont.ttfbin80652 -> 112160 bytes
-rw-r--r--examples/blog/static/fonts/fontawesome-webfont.woffbin44432 -> 65452 bytes
-rw-r--r--examples/blog/static/js/bootstrap.js615
-rw-r--r--examples/blog/static/js/jquery.js663
27 files changed, 1304 insertions, 731 deletions
diff --git a/examples/blog/README.md b/examples/blog/README.md
index 731839781..1cca20c2a 100644
--- a/examples/blog/README.md
+++ b/examples/blog/README.md
@@ -12,7 +12,7 @@ Features
- Indexes for `tags` and `categories`
- Post information block, with links for all `tags` and `categories` post belongs to
- [Bootstrap 3](http://getbootstrap.com/) ready
- - Currently using the Yeti theme from http://bootswatch.com/
+ - Currently using the [Yeti](http://bootswatch.com/yeti/) theme from http://bootswatch.com/
Common things that should be added in the near future *(pull requests are welcome!)*:
@@ -24,19 +24,19 @@ Common things that should be added in the near future *(pull requests are welcom
Getting Started
---------------
-To get started you should simply fork or clone this repository! That's definitely an important first step.
+To get started, you should simply fork or clone this repository! That's definitely an important first step.
[Install Hugo](http://hugo.spf13.com/overview/installing) in a way that best suits your environment and comfort level.
-Edit `config.yaml` and change the default properties to suit your own information. This is not required to run the
+Edit `config.toml` and change the default properties to suit your own information. This is not required to run the
example, but this is the global configuration file and you're going to need to use it eventually. Start here!
-In a command prompt or terminal, navigate to the path that contains your `config.yaml` file and run `hugo`. That's it!
+In a command prompt or terminal, navigate to the path that contains your `config.toml` file and run `hugo`. That's it!
You should now have a `public` directory with a complete blog! Open `public/index.html` in your browser and bask.
-If that wasn't amazing enough, from the same terminal run `hugo server -w`. This will watch your directories for changes
+If that wasn't amazing enough, from the same terminal, run `hugo server -w`. This will watch your directories for changes
and rebuild the site immediately, *and* it will make these changes available at http://localhost:1313/ so you can view
your finished site in your browser. Go on, try it. This is one of the best ways to preview your site while working on it.
To further learn Hugo and learn more, read through the Hugo [documentation](http://hugo.spf13.com/overview/introduction)
-or browse around the files in this repository. Have fun! \ No newline at end of file
+or browse around the files in this repository. Have fun!
diff --git a/examples/blog/config.toml b/examples/blog/config.toml
new file mode 100644
index 000000000..0adbfc4da
--- /dev/null
+++ b/examples/blog/config.toml
@@ -0,0 +1,4 @@
+baseurl = "http://blog.hugoexample.com/"
+languageCode = "en-us"
+title = "Hugo Example Blog"
+canonifyurls = true
diff --git a/examples/blog/config.yaml b/examples/blog/config.yaml
deleted file mode 100644
index 0e3b4aef1..000000000
--- a/examples/blog/config.yaml
+++ /dev/null
@@ -1,5 +0,0 @@
----
-baseurl: "http://blog.hugoexample.com/"
-title: "Hugo Example Blog"
-canonifyurls: true
---- \ No newline at end of file
diff --git a/examples/blog/content/post/another-post.md b/examples/blog/content/post/another-post.md
index 2db5a923b..a063b80f4 100644
--- a/examples/blog/content/post/another-post.md
+++ b/examples/blog/content/post/another-post.md
@@ -1,7 +1,7 @@
+++
title = "Another Hugo Post"
description = "Nothing special, but one post is boring."
-date = "2014-04-09"
+date = "2014-09-02"
categories = [ "example", "configuration" ]
tags = [
"example",
@@ -10,7 +10,7 @@ tags = [
]
+++
-TOML, YAML, JSON - Oh my!
+TOML, YAML, JSON --- Oh my!
-------------------------
One of the nifty Hugo features we should cover: flexible configuration and front matter formats! This entry has front
@@ -22,7 +22,7 @@ The `toml` front matter used on this entry:
+++
title = "Another Hugo Post"
description = "Nothing special, but one post is boring."
-date = "2014-04-09"
+date = "2014-09-02"
categories = [ "example", "configuration" ]
tags = [
"example",
@@ -32,8 +32,8 @@ tags = [
+++
```
-This flexibility also extends to your site's global configuration file. You're free to use any format you prefer, simply
-name the file `config.yaml`, `config.toml`, or `config.json` and go on your merry way.
+This flexibility also extends to your site's global configuration file. You're free to use any format you prefer::simply
+name the file `config.yaml`, `config.toml` or `config.json`, and go on your merry way.
JSON Example
------------
@@ -44,7 +44,7 @@ How would this entry's front matter look in `json`? That's easy enough to demons
{
"title": "Another Hugo Post",
"description": "Nothing special, but one post is boring.",
- "date": "2014-04-09",
+ "date": "2014-09-02",
"categories": [ "example", "configuration" ],
"tags": [
"example",
@@ -52,4 +52,4 @@ How would this entry's front matter look in `json`? That's easy enough to demons
"toml"
],
}
-``` \ No newline at end of file
+```
diff --git a/examples/blog/content/post/hello-hugo.md b/examples/blog/content/post/hello-hugo.md
index d88bd43c6..59f2e7b3e 100644
--- a/examples/blog/content/post/hello-hugo.md
+++ b/examples/blog/content/post/hello-hugo.md
@@ -1,7 +1,7 @@
---
title: "Hello Hugo!"
description: "Saying 'Hello' from Hugo"
-date: "2014-04-08"
+date: "2014-09-01"
categories:
- "example"
- "hello"
@@ -12,20 +12,20 @@ tags:
---
Hello from Hugo! If you're reading this in your browser, good job! The file `content/post/hello-hugo.md` has been
-converted into a complete html document by Hugo. Isn't that pretty nifty?
+converted into a complete HTML document by Hugo. Isn't that pretty nifty?
A Section
---------
Here's a simple titled section where you can place whatever information you want.
-You can use inline HTML if you want, but really there's not much that markdown can't do.
+You can use inline HTML if you want, but really there's not much that Markdown can't do.
-Showing Off With Markdown
+Showing off with Markdown
-------------------------
A full cheat sheet can be found [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
-or through [google](https://google.com/).
+or through [Google](https://google.com/).
There are some *easy* examples for styling, though. I can't **emphasize** that enough.
Creating [links](https://google.com/) or `inline code` blocks are very straightforward.
@@ -35,7 +35,7 @@ There are some *easy* examples for styling, though. I can't **emphasize** that e
Creating [links](https://google.com/) or `inline code` blocks are very straightforward.
```
-Front Matter For Fun
+Front Matter for Fun
--------------------
This is the meta data for this post. It is located at the top of the `content/post/hello-hugo.md` markdown file.
@@ -44,7 +44,7 @@ This is the meta data for this post. It is located at the top of the `content/po
---
title: "Hello Hugo!"
description: "Saying 'Hello' from Hugo"
-date: "2014-04-09"
+date: "2014-09-01"
categories:
- "example"
- "hello"
@@ -55,7 +55,7 @@ tags:
---
```
-This section, called 'Front Matter', is what tells Hugo about the content in this file. The title of the item,the
-description, the date it was posted. In our example we're adding two custom bits of data, too. The `categories` and
+This section, called 'Front Matter', is what tells Hugo about the content in this file: the `title` of the item, the
+`description`, and the `date` it was posted. In our example, we've added two custom bits of data too. The `categories` and
`tags` sections are used in this example for indexing/grouping content. You will learn more about what that means by
-examining the code in this example and through reading the Hugo [documentation](http://hugo.spf13.com/overview/introduction) \ No newline at end of file
+examining the code in this example and through reading the Hugo [documentation](http://hugo.spf13.com/overview/introduction).
diff --git a/examples/blog/layouts/_default/single.html b/examples/blog/layouts/_default/single.html
index 29679d5af..13a53f666 100644
--- a/examples/blog/layouts/_default/single.html
+++ b/examples/blog/layouts/_default/single.html
@@ -1,6 +1,6 @@
-{{ template "chrome/header.html" . }}
+{{ partial "header.html" . }}
<body>
-{{ template "chrome/navbar.html" . }}
+{{ partial "navbar.html" . }}
<div class="container">
<div class="row">
<div class="col-md-9">
@@ -13,9 +13,9 @@
<!-- Sidebar -->
<div class="col-md-3">
- {{ template "chrome/menu.html" . }}
+ {{ partial "menu.html" . }}
</div>
</div>
-{{ template "chrome/footer.copyright.html" . }}
+{{ partial "footer.copyright.html" . }}
</div>
-{{ template "chrome/footer.html" . }} \ No newline at end of file
+{{ partial "footer.html" . }}
diff --git a/examples/blog/layouts/index.html b/examples/blog/layouts/index.html
index 5eb216127..a69100409 100644
--- a/examples/blog/layouts/index.html
+++ b/examples/blog/layouts/index.html
@@ -1,6 +1,6 @@
-{{ template "chrome/header.html" . }}
+{{ partial "header.html" . }}
<body>
-{{ template "chrome/navbar.html" . }}
+{{ partial "navbar.html" . }}
<div class="container">
<div class="row">
<div class="col-md-9">
@@ -11,9 +11,9 @@
<!-- Sidebar -->
<div class="col-md-3">
- {{ template "chrome/menu.html" . }}
+ {{ partial "menu.html" . }}
</div>
</div>
-{{ template "chrome/footer.copyright.html" . }}
+{{ partial "footer.copyright.html" . }}
</div>
-{{ template "chrome/footer.html" . }} \ No newline at end of file
+{{ partial "footer.html" . }}
diff --git a/examples/blog/layouts/indexes/category.html b/examples/blog/layouts/indexes/category.html
index 2551b79b8..653d81964 100644
--- a/examples/blog/layouts/indexes/category.html
+++ b/examples/blog/layouts/indexes/category.html
@@ -1,6 +1,6 @@
-{{ template "chrome/header.html" . }}
+{{ partial "header.html" . }}
<body>
-{{ template "chrome/navbar.html" . }}
+{{ partial "navbar.html" . }}
<div class="container">
<div class="row">
<div class="col-md-9">
@@ -16,9 +16,9 @@
<!-- Sidebar -->
<div class="col-md-3">
- {{ template "chrome/menu.html" . }}
+ {{ partial "menu.html" . }}
</div>
</div>
-{{ template "chrome/footer.copyright.html" . }}
+{{ partial "footer.copyright.html" . }}
</div>
-{{ template "chrome/footer.html" . }} \ No newline at end of file
+{{ partial "footer.html" . }}
diff --git a/examples/blog/layouts/indexes/post.html b/examples/blog/layouts/indexes/post.html
index bd8d90d66..b3a835ccd 100644
--- a/examples/blog/layouts/indexes/post.html
+++ b/examples/blog/layouts/indexes/post.html
@@ -1,6 +1,6 @@
-{{ template "chrome/header.html" . }}
+{{ partial "header.html" . }}
<body>
-{{ template "chrome/navbar.html" . }}
+{{ partial "navbar.html" . }}
<div class="container">
<div class="row">
<div class="col-md-9">
@@ -16,9 +16,9 @@
<!-- Sidebar -->
<div class="col-md-3">
- {{ template "chrome/menu.html" . }}
+ {{ partial "menu.html" . }}
</div>
</div>
-{{ template "chrome/footer.copyright.html" . }}
+{{ partial "footer.copyright.html" . }}
</div>
-{{ template "chrome/footer.html" . }} \ No newline at end of file
+{{ partial "footer.html" . }}
diff --git a/examples/blog/layouts/indexes/tag.html b/examples/blog/layouts/indexes/tag.html
index 16f626dc2..f59b76715 100644
--- a/examples/blog/layouts/indexes/tag.html
+++ b/examples/blog/layouts/indexes/tag.html
@@ -1,6 +1,6 @@
-{{ template "chrome/header.html" . }}
+{{ partial "header.html" . }}
<body>
-{{ template "chrome/navbar.html" . }}
+{{ partial "navbar.html" . }}
<div class="container">
<div class="row">
<div class="col-md-9">
@@ -16,9 +16,9 @@
<!-- Sidebar -->
<div class="col-md-3">
- {{ template "chrome/menu.html" . }}
+ {{ partial "menu.html" . }}
</div>
</div>
-{{ template "chrome/footer.copyright.html" . }}
+{{ partial "footer.copyright.html" . }}
</div>
-{{ template "chrome/footer.html" . }} \ No newline at end of file
+{{ partial "footer.html" . }}
diff --git a/examples/blog/layouts/chrome/footer.copyright.html b/examples/blog/layouts/partials/footer.copyright.html
index 2a7aa873f..2a7aa873f 100644
--- a/examples/blog/layouts/chrome/footer.copyright.html
+++ b/examples/blog/layouts/partials/footer.copyright.html
diff --git a/examples/blog/layouts/chrome/footer.html b/examples/blog/layouts/partials/footer.html
index 8a028c31f..8a028c31f 100644
--- a/examples/blog/layouts/chrome/footer.html
+++ b/examples/blog/layouts/partials/footer.html
diff --git a/examples/blog/layouts/chrome/header.html b/examples/blog/layouts/partials/header.html
index 4a2c3f69c..edb72dd3f 100644
--- a/examples/blog/layouts/chrome/header.html
+++ b/examples/blog/layouts/partials/header.html
@@ -1,10 +1,10 @@
<!doctype html>
<html lang="en">
<head>
- {{ template "chrome/meta.html" . }}
+ {{ partial "meta.html" . }}
<title>{{ .Title }} - {{ .Site.BaseUrl }}</title>
<link rel="canonical" href="{{ .Permalink }}">
- {{ template "chrome/header.includes.html" . }}
+ {{ partial "header.includes.html" . }}
{{ if .RSSlink }}<link href="{{ .RSSlink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />{{ end }}
-</head> \ No newline at end of file
+</head>
diff --git a/examples/blog/layouts/chrome/header.includes.html b/examples/blog/layouts/partials/header.includes.html
index 92891d0cc..92891d0cc 100644
--- a/examples/blog/layouts/chrome/header.includes.html
+++ b/examples/blog/layouts/partials/header.includes.html
diff --git a/examples/blog/layouts/chrome/menu.html b/examples/blog/layouts/partials/menu.html
index 295fb90cc..61ce0c6b5 100644
--- a/examples/blog/layouts/chrome/menu.html
+++ b/examples/blog/layouts/partials/menu.html
@@ -9,7 +9,7 @@
<div class="alert alert-info alert-dismissable" style="margin-top:25px;margin-bottom:5px;">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<strong>Hey, listen!</strong><br>
- You should modify the <code>layouts/chrome/menu.html</code> template and include your own profile links.
+ You should modify the <code>layouts/partials/menu.html</code> template and include your own profile links.
</div>
</div>
- </div> \ No newline at end of file
+ </div>
diff --git a/examples/blog/layouts/chrome/meta.html b/examples/blog/layouts/partials/meta.html
index 95fd2a711..95fd2a711 100644
--- a/examples/blog/layouts/chrome/meta.html
+++ b/examples/blog/layouts/partials/meta.html
diff --git a/examples/blog/layouts/chrome/navbar.html b/examples/blog/layouts/partials/navbar.html
index c4ef82334..c4ef82334 100644
--- a/examples/blog/layouts/chrome/navbar.html
+++ b/examples/blog/layouts/partials/navbar.html
diff --git a/examples/blog/layouts/post/single.html b/examples/blog/layouts/post/single.html
index 05ecc53c7..4b792ebe2 100644
--- a/examples/blog/layouts/post/single.html
+++ b/examples/blog/layouts/post/single.html
@@ -1,6 +1,6 @@
-{{ template "chrome/header.html" . }}
+{{ partial "header.html" . }}
<body>
-{{ template "chrome/navbar.html" . }}
+{{ partial "navbar.html" . }}
<div class="container">
<div class="row">
<div class="col-md-9">
@@ -27,9 +27,9 @@
<strong>Tags</strong><br>
{{ range .Params.tags }}<a class="label label-default" href="/tags/{{ . | urlize }}">{{ . }}</a> {{ end }}
</div>
- {{ template "chrome/menu.html" . }}
+ {{ partial "menu.html" . }}
</div>
</div>
-{{ template "chrome/footer.copyright.html" . }}
+{{ partial "footer.copyright.html" . }}
</div>
-{{ template "chrome/footer.html" . }} \ No newline at end of file
+{{ partial "footer.html" . }}
diff --git a/examples/blog/static/css/bootstrap.css b/examples/blog/static/css/bootstrap.css
index 7b6fd6d50..200ca0887 100644
--- a/examples/blog/static/css/bootstrap.css
+++ b/examples/blog/static/css/bootstrap.css
@@ -1,7 +1,7 @@
@import url("//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700");/*!
- * Bootswatch v3.1.1
+ * bootswatch v3.2.0
* Homepage: http://bootswatch.com
* Copyright 2012-2014 Thomas Park
* Licensed under MIT
* Based on Bootstrap
-*//*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:15px;line-height:1.42857143;color:#222222;background-color:#ffffff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#008cba;text-decoration:none}a:hover,a:focus{color:#00526e;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:0}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#ffffff;border:1px solid #dddddd;border-radius:0;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:21px;margin-bottom:21px;border:0;border-top:1px solid #dddddd}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:300;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999999}h1,.h1,h2,.h2,h3,.h3{margin-top:21px;margin-bottom:10.5px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10.5px;margin-bottom:10.5px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:39px}h2,.h2{font-size:32px}h3,.h3{font-size:26px}h4,.h4{font-size:19px}h5,.h5{font-size:15px}h6,.h6{font-size:13px}p{margin:0 0 10.5px}.lead{margin-bottom:21px;font-size:17px;font-weight:200;line-height:1.4}@media (min-width:768px){.lead{font-size:22.5px}}small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999999}.text-primary{color:#008cba}a.text-primary:hover{color:#006687}.text-success{color:#43ac6a}a.text-success:hover{color:#358753}.text-info{color:#5bc0de}a.text-info:hover{color:#31b0d5}.text-warning{color:#e99002}a.text-warning:hover{color:#b67102}.text-danger{color:#f04124}a.text-danger:hover{color:#d32a0e}.bg-primary{color:#fff;background-color:#008cba}a.bg-primary:hover{background-color:#006687}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9.5px;margin:42px 0 21px;border-bottom:1px solid #dddddd}ul,ol{margin-top:0;margin-bottom:10.5px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:21px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10.5px 21px;margin:0 0 21px;font-size:18.75px;border-left:5px solid #dddddd}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#6f6f6f}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #dddddd;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:21px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:0}kbd{padding:2px 4px;font-size:90%;color:#ffffff;background-color:#333333;border-radius:0;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}pre{display:block;padding:10px;margin:0 0 10.5px;font-size:14px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333333;background-color:#f5f5f5;border:1px solid #cccccc;border-radius:0}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100