From a01b3f1bc45846f479ac6600c4f0067ff8c0a28a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20TESNIERE?= Date: Mon, 20 Jan 2014 23:24:29 +0100 Subject: [PATCH 1/2] Adding the installation step Kramdown --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 69ee0ff..df1bf06 100644 --- a/README.md +++ b/README.md @@ -26,11 +26,12 @@ General notes and suggestions for customizing So Simple Theme. ## Basic Setup for new Jekyll site 1. [Install Jekyll](http://jekyllrb.com) and read through the documentation if you haven't already. -2. Fork the [So Simple Theme repo](https://github.com/mmistakes/so-simple-theme/fork) -3. Clone the repo you just forked. -4. Edit `_config.yml` to personalize your site. -5. Check out the sample posts in `_posts` to see examples for pulling in large feature images, assigning categories and tags, and other YAML data. -6. Read the documentation below for further customization pointers and documentation. +2. [Install Jekyll Extra - Kramdown](http://jekyllrb.com/docs/extras/#kramdown) +3. Fork the [So Simple Theme repo](https://github.com/mmistakes/so-simple-theme/fork) +4. Clone the repo you just forked. +5. Edit `_config.yml` to personalize your site. +6. Check out the sample posts in `_posts` to see examples for pulling in large feature images, assigning categories and tags, and other YAML data. +7. Read the documentation below for further customization pointers and documentation. [Download the Theme](http://mmistakes.github.io/so-simple-theme) From 6b560a843d6a246d34549a4d9bb1f6cbf84c1a46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20TESNIERE?= Date: Tue, 21 Jan 2014 00:02:43 +0100 Subject: [PATCH 2/2] if variable site.logo is null then hide logo --- _includes/navigation.html | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/_includes/navigation.html b/_includes/navigation.html index 4958bfe..a5fc766 100644 --- a/_includes/navigation.html +++ b/_includes/navigation.html @@ -27,14 +27,18 @@ {% endif %} {% if page.image.feature %}
-
- -
+ {% if site.logo != null %} +
+ +
+ {% endif %}
{% else %}
- -

{{ site.title }}

+ {% if site.logo != null %} + + {% endif %} +

{{ site.title }}

{{ site.description }}

{% endif %}