diff --git a/_includes/footer.html b/_includes/footer.html
index be8116d..cd19b0e 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -6,6 +6,7 @@
@@ -39,7 +40,7 @@
diff --git a/_layouts/default.html b/_layouts/default.html
index acedf9b..d9e4924 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -6,19 +6,18 @@
+
+
+ {{ content }}
+
+
+
+
+ {% include footer.html %}
+
diff --git a/_sass/_layout.scss b/_sass/_layout.scss
index c9df0ff..53800f5 100644
--- a/_sass/_layout.scss
+++ b/_sass/_layout.scss
@@ -1,4 +1,15 @@
.page-content{
- max-width: 1200px;
- margin: 0 auto;
-}
\ No newline at end of file
+ max-width: 1200px;
+ margin: 0 auto;
+}
+
+.mdl-card__title {
+ color: #fff;
+ height: 176px;
+ background: url('../img/welcome_card.jpg') center / cover;
+}
+
+.mdl-card__menu {
+ color: #fff;
+}
+
diff --git a/img/welcome_card.jpg b/img/welcome_card.jpg
new file mode 100644
index 0000000..08fb201
Binary files /dev/null and b/img/welcome_card.jpg differ
diff --git a/index.html b/index.html
index 76f6c4c..d224b79 100644
--- a/index.html
+++ b/index.html
@@ -3,25 +3,24 @@ layout: default
---
-
-
-
-
Posts
-
-
- {% for post in site.posts %}
- -
- {{ post.date | date: "%b %-d, %Y" }}
-
-
-
- {% endfor %}
-
-
-
-
+ {% for post in site.posts %}
+
+
+
{{ post.title }}
+
+
+ {{ post.excerpt }}
+
+
+
-
+ {% endfor %}