diff options
author | jeffreytse <jeffreytse.mail@gmail.com> | 2021-06-25 14:16:44 +0800 |
---|---|---|
committer | jeffreytse <jeffreytse.mail@gmail.com> | 2021-06-25 14:16:44 +0800 |
commit | 404a26e6a9be6785e45f52367f0068eaaa33b3bd (patch) | |
tree | f394dc0d70ac5aac075aba6859499af712623f26 /_includes/functions | |
parent | 245fe2a0479819543e3f71499daada138c43377c (diff) |
feat: support banner heading and subheading styles
Diffstat (limited to '_includes/functions')
-rw-r--r-- | _includes/functions/get_banner.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/_includes/functions/get_banner.html b/_includes/functions/get_banner.html index acfb4f4..6d07f10 100644 --- a/_includes/functions/get_banner.html +++ b/_includes/functions/get_banner.html @@ -31,3 +31,14 @@ {% assign name = 'banner.min_height' %} {%- include functions.html func='get_value' -%} {% assign banner_min_height = return %} + +{%- include functions.html func='log' level='debug' msg='Get banner_heading_style value' -%} +{% assign name = 'banner.heading_style' %} +{%- include functions.html func='get_value' -%} +{% assign banner_heading_style = return %} + +{%- include functions.html func='log' level='debug' msg='Get banner_subheading_style value' -%} +{% assign name = 'banner.subheading_style' %} +{%- include functions.html func='get_value' -%} +{% assign banner_subheading_style = return %} + |