@@ -148,7 +148,7 @@ hyde [-s </site/path>] [-v] gen [-d </deploy/path>] [-c <config/path>] [-h] | |||||
: The port to serve the website. | : The port to serve the website. | ||||
*Optional* - default to `8080` | |||||
*Optional* - defaults to `8080` | |||||
`-h` | `-h` | ||||
@@ -2,8 +2,11 @@ | |||||
@subheading-font: "anivers-1","anivers-2", Helvetica, Arial, sans-serif; | @subheading-font: "anivers-1","anivers-2", Helvetica, Arial, sans-serif; | ||||
@text-font: "ff-meta-web-pro-1","ff-meta-web-pro-2", Helvetica, Arial, sans-serif; | @text-font: "ff-meta-web-pro-1","ff-meta-web-pro-2", Helvetica, Arial, sans-serif; | ||||
@caps-font: "anivers-1","anivers-2", Helvetica, Arial, sans-serif; | @caps-font: "anivers-1","anivers-2", Helvetica, Arial, sans-serif; | ||||
@blurb-font: "Helvetica Neue", "ff-meta-web-pro-1","ff-meta-web-pro-2", Helvetica, Arial, sans-serif; | |||||
.blurb{ | |||||
background-color: @light; | |||||
} | |||||
.heading{ | .heading{ | ||||
color: @clear - 40; | color: @clear - 40; | ||||
@@ -9,6 +9,7 @@ | |||||
@import 'inc/controls'; | @import 'inc/controls'; | ||||
h2 { | h2 { | ||||
margin: @column 0 @column / 2; | |||||
font-size: @gutter * 2; | font-size: @gutter * 2; | ||||
color: @shade; | color: @shade; | ||||
line-height: @gutter * 2; | line-height: @gutter * 2; | ||||
@@ -46,7 +47,7 @@ header.banner { | |||||
article { | article { | ||||
padding: @column; | padding: @column; | ||||
.boxshadow(0, 1px, 3px, @qdark); | .boxshadow(0, 1px, 3px, @qdark); | ||||
h1.title { | h1.title { | ||||
color: @dark; | color: @dark; | ||||
font-size: @gutter * 3; | font-size: @gutter * 3; | ||||
@@ -65,7 +65,7 @@ hyde serve | |||||
You can access the website now at `http://localhost:8080` | You can access the website now at `http://localhost:8080` | ||||
For all the supported options, read [command line documentation][commandline] | |||||
For all the supported options, read the [command line documentation][commandline] | |||||
or run `hyde -h`. | or run `hyde -h`. | ||||
## Source | ## Source | ||||
@@ -1,7 +1,7 @@ | |||||
{% extends "root.j2" %} | {% extends "root.j2" %} | ||||
{% block main -%} | {% block main -%} | ||||
<article> | <article> | ||||
<hgroup> | |||||
<hgroup class="article_head"> | |||||
<h1 class="title">{{ resource.meta.title }}</h1> | <h1 class="title">{{ resource.meta.title }}</h1> | ||||
<h3 class="subtitle">{{ resource.meta.subtitle }}</h3> | <h3 class="subtitle">{{ resource.meta.subtitle }}</h3> | ||||
</hgroup> | </hgroup> | ||||