From 14cbc5a26632b6478c378b9e35a8ca5416231538 Mon Sep 17 00:00:00 2001 From: Dean Attali Date: Thu, 15 Dec 2016 16:46:53 -0500 Subject: [PATCH] Support title-img config param to have image in the navbar instead of text --- _includes/nav.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_includes/nav.html b/_includes/nav.html index 08d7609..d1d0320 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -7,7 +7,11 @@ - {{ site.title }} + {% if site.title-img %} + + {% else %} + {{ site.title }} + {% endif %}