From 3b30dfbac339546d9ae6cd185217699f2044b360 Mon Sep 17 00:00:00 2001
From: Tanner Smith <tannersmithtn95@gmail.com>
Date: Thu, 23 Dec 2021 20:01:14 +0000
Subject: [PATCH] Add option to change content font color (#286)
---
layouts/_default/terms.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html
index 87275c7..e448fca 100644
--- a/layouts/_default/terms.html
+++ b/layouts/_default/terms.html
@@ -1,7 +1,7 @@
{{ define "main" }}
{{ $data := .Data }}
<article class="cf pa3 pa4-m pa4-l">
- <div class="measure-wide-l center f4 lh-copy nested-copy-line-height nested-links nested-img mid-gray">
+ <div class="measure-wide-l center f4 lh-copy nested-copy-line-height nested-links nested-img {{ $.Param "text_color" | default "mid-gray" }}">
{{ .Content }}
</div>
</article>
--
Gitblit v1.10.0