From a57189d85fd554ba60d9a539c643220396cf56dc Mon Sep 17 00:00:00 2001
From: budparr <budparr@gmail.com>
Date: Sun, 04 Nov 2018 19:14:24 +0000
Subject: [PATCH] Add global background color class to footer

---
 layouts/partials/site-footer.html |    2 +-
 CHANGELOG.md                      |    4 ++++
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 70ddc9f..81ab210 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,10 @@
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
 
 
+## [2.35] - 2018-11-04 (@budparr)
+
+- Add global background color class to footer (it's already on the header). Fixes #135
+
 ## [2.34] - 2018-11-03 (@budparr)
 
 ### Added
diff --git a/layouts/partials/site-footer.html b/layouts/partials/site-footer.html
index 68e9688..d014f77 100755
--- a/layouts/partials/site-footer.html
+++ b/layouts/partials/site-footer.html
@@ -1,4 +1,4 @@
-<footer class="bg-near-black bottom-0 w-100 pa3" role="contentinfo">
+<footer class="{{ .Site.Params.background_color_class | default "bg-black" }} bottom-0 w-100 pa3" role="contentinfo">
   <div class="flex justify-between">
   <a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="{{ .Site.BaseURL }}" >
     &copy; {{ now.Format "2006" }} {{ .Site.Title }}

--
Gitblit v1.10.0