blog/_includes/views/banner.html

62 lines
1.8 KiB
HTML
Raw Normal View History

2019-09-11 06:19:34 +02:00
{%- include functions.html func='log' level='debug' msg='Get banner_html value' -%}
{% assign name = 'banner_html' %}
{%- include functions.html func='get_value' -%}
{% assign banner_html = return %}
{%- include functions.html func='log' level='debug' msg='Get heading value' -%}
{% assign name = 'heading' %}
{%- include functions.html func='get_value' -%}
{% assign heading = return %}
{%- include functions.html func='log' level='debug' msg='Get subheading value' -%}
{% assign name = 'subheading' %}
{%- include functions.html func='get_value' -%}
{% assign subheading = return %}
{%- include functions.html func='get_banner' -%}
{% if banner_image %}
<style>
html .page-banner {
height: {{ banner_height }};
}
html .page-banner .page-banner-img > *:first-child {
opacity: {{ banner_opacity }};
}
html[data-theme="dark"] .page-banner .page-banner-img > *:first-child {
opacity: {{ banner_opacity | times: 0.6 }};
}
</style>
2019-09-11 06:19:34 +02:00
<section class="page-banner">
<div class="page-banner-img">
<div style="background-image: url({{ banner_image }})"></div>
2021-06-17 14:44:37 +02:00
<img class="img-placeholder" src="{{ banner_image }}"></div>
2019-09-11 06:19:34 +02:00
</div>
<div class="wrapper">
<div class="page-banner-inner">
{%- if banner_html -%}
{%- assign banner_html = 'views/' | append: banner_html -%}
{%- include {{ banner_html }} -%}
{%- else -%}
<div class="page-banner-default">
<h1 class="page-banner-heading">
{{ heading | default: page.title | escape }}
</h1>
2020-07-10 16:30:32 +02:00
<h2 class="page-banner-subheading">
{{ subheading | default: page.subtitle | escape }}
2020-07-10 16:30:32 +02:00
</h2>
2019-09-20 09:45:37 +02:00
</div>
2019-09-11 06:19:34 +02:00
{%- endif -%}
</div>
</div>
</section>
{%- endif -%}