From 966587a257b568160b68956f37cbfcbc8bf93b93 Mon Sep 17 00:00:00 2001 From: Kilian Cavalotti Date: Mon, 14 Mar 2016 11:09:22 -0700 Subject: [PATCH] Allow specifying a custom favicon Add an extra setting to specify a custom favicon: ``` extra: favicon: favicon.ico ``` --- src/base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base.html b/src/base.html index ce705dcff..674beede3 100644 --- a/src/base.html +++ b/src/base.html @@ -58,7 +58,7 @@ {% endif %} - {% set icon = icon | default("assets/images/favicon.ico") %} + {% set icon = config.extra.favicon | default("assets/images/favicon.ico") %} {% endif %} - \ No newline at end of file +