diff --git a/www/_layouts/page.html b/www/_layouts/page.html index 4e0d4ebf..df419ebf 100644 --- a/www/_layouts/page.html +++ b/www/_layouts/page.html @@ -2,6 +2,9 @@ layout: default --- +

{{ page.title }}

{{ content }} diff --git a/www/_layouts/post.html b/www/_layouts/post.html index 7dac44b5..9017d547 100644 --- a/www/_layouts/post.html +++ b/www/_layouts/post.html @@ -2,6 +2,10 @@ layout: default --- +

{{ page.title }}

diff --git a/www/_layouts/wiki.html b/www/_layouts/wiki.html index 4e0d4ebf..12c662da 100644 --- a/www/_layouts/wiki.html +++ b/www/_layouts/wiki.html @@ -2,7 +2,14 @@ layout: default --- -
+ +

{{ page.title }}

{{ content }}
diff --git a/www/_sass/_header.scss b/www/_sass/_header.scss index 50b0bd33..88709886 100644 --- a/www/_sass/_header.scss +++ b/www/_sass/_header.scss @@ -1,3 +1,17 @@ +#breadcrumbs { + margin-bottom: 1.8em; + + a { + padding-right: 10px; + } + + a+a:before { + padding-right: 10px; + color: $color-body-text; + content: "/\00a0"; + } +} + .header { padding: 3em 0 2em; text-align: center;