blob: b62181aedeea563cda365f81ac345226874a4565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
{%- 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 banner value' -%}
{% assign name = 'banner' %}
{%- include functions.html func='get_value' -%}
{% assign banner = 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 %}
{% if banner %}
{% assign auto_banner = true %}
{% assign array = banner | split: '/' %}
{% assign protocol = array[0] %}
{% if array.size > 1 and (protocol == '' or protocol == 'http:' or protocol == 'https:') %}
{% assign auto_banner = false %}
{% endif %}
<section class="page-banner">
<div class="page-banner-img">
{%- if auto_banner == false -%}
<div style="background-image: url({{ banner }})"></div>
{%- endif -%}
</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>
<h3 class="page-banner-subheading">
{{ subheading | default: page.subtitle | escape }}
</h3>
</div>
{%- endif -%}
</div>
</div>
</section>
{%- if auto_banner -%}
{%- assign selector = ".page-banner-img" -%}
{%- if banner == "default" -%}
{%- assign heading = page.heading | default: page.title | escape -%}
{%- assign subheading = page.subheading | default: page.subtitle | escape -%}
{%- assign seed = page.date | append: heading | append: subheading -%}
{%- else -%}
{%- assign seed = 'theme-' | append: banner -%}
{%- endif -%}
{%- assign zoom = 1.5 -%}
{%- include extensions/trianglify.html -%}
{%- endif -%}
{%- endif -%}
|