diff options
author | jeffreytse <jeffreytse.mail@gmail.com> | 2021-06-17 20:39:11 +0800 |
---|---|---|
committer | jeffreytse <jeffreytse.mail@gmail.com> | 2021-06-17 20:39:11 +0800 |
commit | cae6e2e54973d9ccbc9de6954d2dbf0888c1842f (patch) | |
tree | 60dc04f2c75d0291807f1197eadc8dabb3157c7e /_includes/functions | |
parent | 9b06eb1ba9229e1885f6a847ae4a610ea56fcee1 (diff) |
feat: support advanced banner configuration
Support to configurate the banner opacity and height.
Diffstat (limited to '_includes/functions')
-rw-r--r-- | _includes/functions/get_banner.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/_includes/functions/get_banner.html b/_includes/functions/get_banner.html new file mode 100644 index 0000000..bb19ac2 --- /dev/null +++ b/_includes/functions/get_banner.html @@ -0,0 +1,28 @@ +{%- include functions.html func='log' level='debug' msg='Get banner value' -%} +{% assign name = 'banner' %} +{%- include functions.html func='get_value' -%} +{% assign banner = return %} + +{%- if banner.first -%} + {%- include functions.html func='log' level='debug' msg='Get banner_image value' -%} + {% assign name = 'banner.image' %} + {%- include functions.html func='get_value' -%} + {% assign banner_image = return | relative_url %} +{%- else -%} + {% assign banner_image = banner | relative_url %} +{%- endif -%} + +{%- include functions.html func='log' level='debug' msg='Get banner_background value' -%} +{% assign name = 'banner.background' %} +{%- include functions.html func='get_value' -%} +{% assign banner_background = return %} + +{%- include functions.html func='log' level='debug' msg='Get banner_opacity value' -%} +{% assign name = 'banner.opacity' %} +{%- include functions.html func='get_value' -%} +{% assign banner_opacity = return %} + +{%- include functions.html func='log' level='debug' msg='Get banner_height value' -%} +{% assign name = 'banner.height' %} +{%- include functions.html func='get_value' -%} +{% assign banner_height = return %} |