From 26ac72910bf920c946ec83dc30921e4b26add3ac Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Sat, 10 Aug 2013 11:39:15 -0400 Subject: [PATCH 1/5] Fixes #26 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f93bcb..02c30e9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # So Simple Theme -Looking for a simple, responsive, theme for your Jekyll powered blog? Well look no further. Here be **So Simple Theme**, the followup to [**Minimal Mistakes**](http://mmistakes.github.io/so-simple-theme) -- by designer slash illustrator [Michael Rose](http://mademistakes). +Looking for a simple, responsive, theme for your Jekyll powered blog? Well look no further. Here be **So Simple Theme**, the followup to [**Minimal Mistakes**](http://mmistakes.github.io/minimal-mistakes/) -- by designer slash illustrator [Michael Rose](http://mademistakes.com). ## So Simple Theme is all about: From f998e10078a75a8b6c2bbabd609d79a5933c0545 Mon Sep 17 00:00:00 2001 From: Alex Forey Date: Mon, 12 Aug 2013 18:24:39 +0100 Subject: [PATCH 2/5] Updated post.html for link posts --- _layouts/post.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/_layouts/post.html b/_layouts/post.html index 5dc2cf4..15eb375 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -17,8 +17,12 @@ {% if page.image.feature %}{{ page.title }}{% if page.image.credit %}

Photo Credit: {{ page.image.credit }}{% endif %}{% endif %}

- -

{% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}{% endif %}

+ + {% if page.link %} +

{% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}{% endif %}

+ {% else %} +

{% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}{% endif %}

+ {% endif %}