diff --git a/_layouts/home.html b/_layouts/home.html
index 341160d..68cd8b2 100644
--- a/_layouts/home.html
+++ b/_layouts/home.html
@@ -10,7 +10,11 @@ layout: default
{{ content }}
{% if site.posts.size > 0 %}
-
{{ page.list_title | default: "Recent posts" }}
+
+ {% if page.list_title %}
+ {{ page.list_title }}
+ {% endif %}
+
{% for post in site.posts %}
-
diff --git a/assets/main.scss b/assets/main.scss
index 9ea3e94..74efe12 100644
--- a/assets/main.scss
+++ b/assets/main.scss
@@ -2,14 +2,18 @@
---
@import 'minima';
-@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700|Open+Sans|Ubuntu+Mono');
+@import url('https://fonts.googleapis.com/css?family=Archivo+Black|Tenor+Sans|Ubuntu+Mono');
html, body, div, p {
- font-family: 'Open Sans'
+ font-family: 'Tenor'
+}
+
+body {
+ font-size: 17px;
}
h1, h2, h3, h4, h5, h6 {
- font-family: 'Roboto Slab'
+ font-family: 'Archivo Black'
}
pre, code {
@@ -25,12 +29,13 @@ body > header {
background-color: #000;
.site-title, .site-title:visited {
- font-family: 'Roboto Slab';
+ font-family: 'Archivo Black';
color: #fff;
}
.site-nav {
.page-link, .page-link:visited {
+ font-family: 'Archivo Black';
color: #fff;
@include media-query($on-palm) {
@@ -40,6 +45,17 @@ body > header {
}
}
+.page-content {
+ background: #efefef;
+ padding-top: 0px;
+}
+
+.page-content > .wrapper {
+ padding-top: 30px;
+ background: #fff;
+}
+
img.profile {
width: 400px;
}
+