futuro 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/html/page/content/loop/alert.liquid +31 -0
  3. data/_includes/html/page/content/loop/button/build.liquid +7 -1
  4. data/_includes/html/page/content/loop/checkbox.liquid +4 -8
  5. data/_includes/html/page/content/loop/form/alert.liquid +8 -13
  6. data/_includes/html/page/content/loop/form/callout.liquid +1 -1
  7. data/_includes/html/page/content/loop/form/date.liquid +7 -7
  8. data/_includes/html/page/content/loop/form/email.liquid +38 -0
  9. data/_includes/html/page/content/loop/form/item.liquid +6 -9
  10. data/_includes/html/page/content/loop/form/message.liquid +1 -1
  11. data/_includes/html/page/content/loop/form/number.liquid +3 -3
  12. data/_includes/html/page/content/loop/form/phone.liquid +22 -21
  13. data/_includes/html/page/content/loop/form/radio.liquid +7 -7
  14. data/_includes/html/page/content/loop/form/select.liquid +10 -10
  15. data/_includes/html/page/content/loop/form/text.liquid +23 -27
  16. data/_includes/html/page/content/loop/form/textarea.liquid +6 -5
  17. data/_includes/html/page/content/loop/form.liquid +14 -7
  18. data/_includes/html/page/content/loop/header/search.liquid +1 -1
  19. data/_includes/html/page/content/loop/input.liquid +17 -0
  20. data/_includes/html/page/content/loop/item.liquid +16 -0
  21. data/_includes/html/page/content/loop/{form/label.liquid → label.liquid} +24 -4
  22. data/_includes/html/page/content/loop/onemoment.liquid +6 -0
  23. data/_includes/html/page/content/loop/screen/header.liquid +3 -3
  24. data/_includes/html/page/content/loop/screen.liquid +2 -2
  25. data/_includes/html/page/content/loop/{select/create.liquid → select.liquid} +0 -0
  26. data/_includes/html/page/content/row.liquid +1 -1
  27. data/_includes/html/page/content.liquid +70 -71
  28. data/_sass/block/form/alert.scss +0 -4
  29. data/_sass/block/form/checkbox.scss +2 -18
  30. data/_sass/block/form/item.scss +17 -17
  31. data/_sass/futuro.core.scss +14 -0
  32. data/_sass/helpers/extends/forms.scss +16 -0
  33. data/_sass/helpers/mixins/theme.scss +1 -1
  34. data/assets/js/footer/custom/5_check.form.js +7 -0
  35. data/assets/js/futuro.footer.custom.js +1 -1
  36. metadata +10 -8
  37. data/_includes/html/page/content/loop/alert/create.liquid +0 -20
  38. data/_includes/html/page/content/loop/alert/example.liquid +0 -4
  39. data/_includes/html/page/content/loop/form/input.liquid +0 -17
  40. data/_includes/html/page/content/loop/yousaved.liquid +0 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62f18621e9a71dfc8632878a3473280efc990d5ecf5425f67235b5d3d1fc773e
4
- data.tar.gz: 10d0aaba16fd36fff183c516bf1609140624b49e1a0f1e590457dd59531246f1
3
+ metadata.gz: 14345f7538f03247020e48e4a336322986550e9b9cbdcc804ec1eec95aebba03
4
+ data.tar.gz: 564bd9fb92cb984482aa29a740a1303337ef2d57d502ff9863f19cb66349ec39
5
5
  SHA512:
6
- metadata.gz: 2ab95805e45cb05eae6645607e06d825b19c861366a7e1523f807b62715fe1ca8bdee1df84d3953a2cb1fcda3d1be02f57949aa5349fb60ce4179719d7ea0cfd
7
- data.tar.gz: 78545dda537062b21b2a165fc64a954e4871a4f3827f9407f633418a7948baf7ca2697b12c71a979151646f4cb56922a61cd24d77c4632ac7bb01ea7c6814055
6
+ metadata.gz: 0c7a0526dfaa910cb5d2cf643f2879d96949b82173c888f07db95f1325e6878be29de2f8c31ec025b93f02a799e0c92b436d2a548ecef733ea5d1e9e05f8bf19
7
+ data.tar.gz: dd59bd5091086bf55d472b437c72b35ffab3e32a845ccc7d4092170b5bc4a29894a294669bf8cdef1c3c070c78dee97ce051a9be0cc55d9560e2a71934de6ce3
@@ -0,0 +1,31 @@
1
+
2
+ {% if include.type == "whatson" %}
3
+
4
+ <span class="wrap alert-wrap" style="display:block;">
5
+
6
+ <span class="block alert-content">
7
+
8
+ <span class="title alert-content alert-feed">
9
+
10
+ {{ include.title }}
11
+
12
+ </span>
13
+
14
+ <span class="title alert-content alert-clone">
15
+
16
+ {{ include.title }}
17
+
18
+ </span>
19
+
20
+ </span>
21
+
22
+ </span>
23
+
24
+ {% else %}
25
+
26
+ {% include {{ ContentLoop | append : 'item.liquid' }}
27
+ title = include.title
28
+ price = include.price
29
+ alert = true %}
30
+
31
+ {% endif %}
@@ -2,10 +2,16 @@
2
2
  {% assign IncludeFunc = include.func | prepend : 'func-' %}
3
3
  {% assign IncludeTitle = include.title | prepend : 'title-' | downcase %}
4
4
 
5
+ {% if include.type %}
6
+ {% assign IncludeType = include.type | prepend : 'type-' %}
7
+ {% else %}
8
+ {% assign IncludeType = "type-solid" %}
9
+ {% endif %}
10
+
5
11
  <span class="button-wrap
12
+ {{ IncludeType }}
6
13
  {% if include.func %}{{ IncludeFunc }}{% endif %}
7
14
  {% if include.title %}{{ IncludeTitle }}{% endif %}
8
- {% if include.type %}{{ include.type | prepend : 'type-' }}{% endif %}
9
15
  {% if include.style %}{{ include.style | prepend : 'style-' }}{% endif %}
10
16
  {% if include.context %}{{ include.context | prepend : 'context-' }}{% endif %}">
11
17
 
@@ -1,23 +1,19 @@
1
1
 
2
2
  {% include html/assign/name.liquid parent="checkbox" %}
3
3
 
4
- {% if include.form %}<p class="block form-row checkbox-row">{% endif %}
4
+ <span class="checkbox-wrap {% if include.nolabel %}no-label{% endif %}">
5
5
 
6
- <span class="checkbox-wrap {% if include.nolabel %}nolabel{% endif %}">
7
-
8
- {%- include {{ LoopForm | append : 'input.liquid' }}
6
+ {%- include {{ ContentLoop | append : 'input.liquid' }}
9
7
  type = "checkbox"
10
8
  value = "yes"
11
9
  class = "checkbox-input" -%}
12
10
 
13
- {%- include {{ LoopForm | append : 'label.liquid' }}
14
- title = include.title
11
+ {%- include {{ ContentLoop | append : 'label.liquid' }}
12
+ label = include.label
15
13
  small = include.small
16
14
  subtitle = include.subtitle
17
15
  class = "checkbox-label" -%}
18
16
 
19
17
  </span>
20
18
 
21
- {% if include.form %}</p>{% endif %}
22
-
23
19
 
@@ -1,14 +1,9 @@
1
1
 
2
- {%- if include.context == "form" -%}
3
-
4
- <p class="block form-row alert-row">
5
-
6
- <span class="block form-alert">{{ item.alert }}</span>
7
-
8
- </p>
9
-
10
- {%- else -%}
11
-
12
- <span class="block form-alert">{{ item.alert }}</span>
13
-
14
- {%- endif -%}
2
+ <p class="block form-row alert-row">
3
+
4
+ {% include {{ ContentLoop | append : 'alert.liquid' }}
5
+ title = item.alert.title
6
+ type = item.alert.type
7
+ price = item.alert.price %}
8
+
9
+ </p>
@@ -1,6 +1,6 @@
1
1
 
2
2
  <p class="block form-row title-row">
3
3
 
4
- <span class="block title">{{ item.callout }}</span>
4
+ <span class="block title">{{ item.callout.title }}</span>
5
5
 
6
6
  </p>
@@ -3,14 +3,14 @@
3
3
 
4
4
  {% include html/assign/name.liquid parent="day" %}
5
5
 
6
- {% include {{ LoopForm | append : 'label.liquid' }}
7
- title = item.date
8
- small = item.small
9
- subtitle = item.subtitle %}
6
+ {% include {{ ContentLoop | append : 'label.liquid' }}
7
+ label = item.date.label
8
+ small = item.date.small
9
+ subtitle = item.date.subtitle %}
10
10
 
11
11
  <span class="block form-date-group">
12
12
 
13
- {% include {{ ContentLoop | append : 'select/create.liquid' }}
13
+ {% include {{ ContentLoop | append : 'select.liquid' }}
14
14
  options = "Day, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
15
15
  11, 12, 13, 14, 15, 16, 17, 18, 19,
16
16
  20, 21, 22, 23, 24, 25, 26, 27, 28,
@@ -18,13 +18,13 @@
18
18
 
19
19
  {% include html/assign/name.liquid parent="month" %}
20
20
 
21
- {% include {{ ContentLoop | append : 'select/create.liquid' }}
21
+ {% include {{ ContentLoop | append : 'select.liquid' }}
22
22
  options = "Month, Jan, Feb, Mar, Apr, May, Jun,
23
23
  Jul, Aug, Sep, Oct, Nov, Dec" %}
24
24
 
25
25
  {% include html/assign/name.liquid parent="year" %}
26
26
 
27
- {% include {{ ContentLoop | append : 'select/create.liquid' }}
27
+ {% include {{ ContentLoop | append : 'select.liquid' }}
28
28
  options = "Year, 2020, 2019, 2018, 2017, 2016, 2015,
29
29
  2014, 2013, 2012, 2011, 2010, 2020, 2009,
30
30
  2008, 2007, 2006, 2005, 2004, 2003, 2002,
@@ -0,0 +1,38 @@
1
+
2
+ {% if item.email.tag %}
3
+
4
+ {% assign ItemTags = item.email.tag | prepend : 'tag-' | split : ' ' | join : ' tag-' %}
5
+
6
+ {% endif %}
7
+
8
+ <p class="block form-row text-row">
9
+
10
+ {% include html/assign/name.liquid parent="email" %}
11
+
12
+ {% include {{ ContentLoop | append : 'label.liquid' }}
13
+ label = item.email.label
14
+ small = item.email.small
15
+ subtitle = item.email.subtitle
16
+ required = item.email.required
17
+ position = "top"
18
+ class = "form-label" %}
19
+
20
+ <span class="block text-input {% if item.email.tag %}{{ ItemTags }}{% endif %}">
21
+
22
+ <span class="wrap text-input">
23
+
24
+ {% include {{ ContentLoop | append : 'input.liquid' }}
25
+ required = item.email.required
26
+ type = "email" %}
27
+
28
+ </span>
29
+
30
+ {% if item.email.inline %}
31
+
32
+ <small>{{ item.email.inline }}</small>
33
+
34
+ {% endif %}
35
+
36
+ </span>
37
+
38
+ </p>
@@ -2,8 +2,8 @@
2
2
  {%- if include.context == "legend" -%}
3
3
 
4
4
  {% assign StyleDot = include.title | slice : 6
5
- | prepend : 'style-level-'
6
- | downcase %}
5
+ | prepend : 'style-level-'
6
+ | downcase %}
7
7
 
8
8
  <span class="block legend-row">
9
9
 
@@ -35,13 +35,10 @@
35
35
 
36
36
  <p class="block form-row item-row">
37
37
 
38
- <span class="block item-object">
39
-
40
- <span>{{ item.item }}</span>
41
-
42
- <span class="block item-object-price">{{ item.price | prepend: '£' }}</span>
43
-
44
- </span>
38
+ {% include {{ ContentLoop | append : 'item.liquid' }}
39
+ title = item.item.title
40
+ price = item.item.price
41
+ nolabel = true %}
45
42
 
46
43
  </p>
47
44
 
@@ -1,6 +1,6 @@
1
1
 
2
2
  <p class="block form-row message-row">
3
3
 
4
- <span class="block message">{{ item.message }}</span>
4
+ <span class="block message">{{ item.message.title }}</span>
5
5
 
6
6
  </p>
@@ -8,8 +8,8 @@
8
8
 
9
9
  {% include html/assign/name.liquid parent=item.number %}
10
10
 
11
- {% include {{ LoopForm | append : 'label.liquid' }}
12
- title = item.number
11
+ {% include {{ ContentLoop | append : 'label.liquid' }}
12
+ label = item.number
13
13
  small = item.small
14
14
  position = "top"
15
15
  class = "form-label" %}
@@ -18,7 +18,7 @@
18
18
 
19
19
  <span class="wrap text-input">
20
20
 
21
- {% include {{ LoopForm | append : 'input.liquid' }}
21
+ {% include {{ ContentLoop | append : 'input.liquid' }}
22
22
  type = "number"
23
23
  class = "text-input" %}
24
24
 
@@ -1,37 +1,38 @@
1
1
 
2
+ {% if item.phone.tag %}
2
3
 
3
- {% if include.context == "legend" %}
4
+ {% assign ItemTags = item.phone.tag | prepend : 'tag-' | split : ' ' | join : ' tag-' %}
4
5
 
5
- {% else %}
6
+ {% endif %}
6
7
 
7
8
  <p class="block form-row text-row">
8
9
 
9
- {% include html/assign/name.liquid parent=item.phone %}
10
+ {% include html/assign/name.liquid parent="phone" %}
10
11
 
11
- {% include {{ LoopForm | append : 'label.liquid' }}
12
- title = item.phone
13
- small = item.small
14
- position = "top"
15
- class = "form-label" %}
12
+ {% include {{ ContentLoop | append : 'label.liquid' }}
13
+ label = item.phone.label
14
+ small = item.phone.small
15
+ subtitle = item.phone.subtitle
16
+ required = item.phone.required
17
+ position = "top"
18
+ class = "form-label" %}
16
19
 
17
- <span class="block text-input {% if item.tag %}{{ ItemTags }}{% endif %}">
20
+ <span class="block text-input {% if item.phone.tag %}{{ ItemTags }}{% endif %}">
18
21
 
19
- <span class="wrap text-input">
22
+ <span class="wrap text-input">
20
23
 
21
- {% include {{ LoopForm | append : 'input.liquid' }}
22
- type = "tel"
23
- class = "text-input" %}
24
+ {% include {{ ContentLoop | append : 'input.liquid' }}
25
+ required = item.phone.required
26
+ type = "tel" %}
24
27
 
25
- </span>
28
+ </span>
26
29
 
27
- {% if item.inline %}
30
+ {% if item.phone.inline %}
28
31
 
29
- <small>{{ item.inline }}</small>
32
+ <small>{{ item.phone.inline }}</small>
30
33
 
31
- {% endif %}
34
+ {% endif %}
32
35
 
33
- </span>
36
+ </span>
34
37
 
35
- </p>
36
-
37
- {% endif %}
38
+ </p>
@@ -1,30 +1,30 @@
1
1
 
2
- {% assign RadioGroup = item.radio | replace : ' ','-' | downcase %}
2
+ {% assign RadioGroup = item.radio.label | replace : ' ','-' | downcase %}
3
3
 
4
4
  <p class="block form-row form-radio">
5
5
 
6
6
  {% include html/assign/name.liquid parent="radio" %}
7
7
 
8
- {% include {{ LoopForm | append : 'label.liquid' }}
9
- title = item.radio
8
+ {% include {{ ContentLoop | append : 'label.liquid' }}
9
+ label = item.radio.label
10
10
  class = "form-label" %}
11
11
 
12
12
  <span class="wrap form-radio">
13
13
 
14
- {% for item in item.list %}
14
+ {% for item in item.radio.list %}
15
15
 
16
16
  {% include html/assign/name.liquid parent="radio" %}
17
17
 
18
18
  <span class="block form-radio-group">
19
19
 
20
- {% include {{ LoopForm | append : 'input.liquid' }}
20
+ {% include {{ ContentLoop | append : 'input.liquid' }}
21
21
  name = RadioGroup
22
22
  type = "radio"
23
23
  class = "radio-input" %}
24
24
 
25
- {% include {{ LoopForm | append : 'label.liquid' }}
25
+ {% include {{ ContentLoop | append : 'label.liquid' }}
26
26
  name = RadioGroup
27
- title = item.input
27
+ label = item.input
28
28
  class = "form-radio-label" %}
29
29
 
30
30
  </span>
@@ -1,19 +1,19 @@
1
1
 
2
- {% include html/assign/name.liquid parent=item.select %}
2
+ {% include html/assign/name.liquid parent="select" %}
3
3
 
4
4
  <p class="block form-row select-row">
5
5
 
6
- {% include {{ LoopForm | append : 'label.liquid' }}
7
- title = item.select
8
- small = item.small
9
- subtitle = item.subtitle %}
6
+ {% include {{ ContentLoop | append : 'label.liquid' }}
7
+ label = item.select.label
8
+ small = item.select.small
9
+ subtitle = item.select.subtitle %}
10
10
 
11
- {% assign PrepList = item.list | replace : '[',''
12
- | replace : '{"option"=>"',''
13
- | replace : '"}',''
14
- | replace : ']','' %}
11
+ {% assign PrepList = item.select.list | replace : '[',''
12
+ | replace : '{"option"=>"',''
13
+ | replace : '"}',''
14
+ | replace : ']','' %}
15
15
 
16
- {% include {{ ContentLoop | append : 'select/create.liquid' }}
16
+ {% include {{ ContentLoop | append : 'select.liquid' }}
17
17
  options = PrepList %}
18
18
 
19
19
  </p>
@@ -1,42 +1,38 @@
1
1
 
2
- {% if item.tag %}
2
+ {% if item.text.tag %}
3
3
 
4
- {% assign ItemTags = item.tag | prepend : 'tag-' | split : ' ' | join : ' tag-' %}
4
+ {% assign ItemTags = item.text.tag | prepend : 'tag-' | split : ' ' | join : ' tag-' %}
5
5
 
6
6
  {% endif %}
7
7
 
8
- {% if include.context == "legend" %}
8
+ <p class="block form-row text-row">
9
9
 
10
- {% else %}
10
+ {% include html/assign/name.liquid parent="text" %}
11
11
 
12
- <p class="block form-row text-row">
12
+ {% include {{ ContentLoop | append : 'label.liquid' }}
13
+ label = item.text.label
14
+ small = item.text.small
15
+ subtitle = item.text.subtitle
16
+ required = item.text.required
17
+ position = "top"
18
+ class = "form-label" %}
13
19
 
14
- {% include html/assign/name.liquid parent=item.text %}
20
+ <span class="block text-input {% if item.text.tag %}{{ ItemTags }}{% endif %}">
15
21
 
16
- {% include {{ LoopForm | append : 'label.liquid' }}
17
- title = item.text
18
- small = item.small
19
- position = "top"
20
- class = "form-label" %}
22
+ <span class="wrap text-input">
21
23
 
22
- <span class="block text-input {% if item.tag %}{{ ItemTags }}{% endif %}">
24
+ {% include {{ ContentLoop | append : 'input.liquid' }}
25
+ required = item.text.required
26
+ type = "text" %}
23
27
 
24
- <span class="wrap text-input">
28
+ </span>
25
29
 
26
- {% include {{ LoopForm | append : 'input.liquid' }}
27
- type = "text"
28
- class = "text-input" %}
29
-
30
- </span>
31
-
32
- {% if item.inline %}
33
-
34
- <small>{{ item.inline }}</small>
35
-
36
- {% endif %}
30
+ {% if item.text.inline %}
37
31
 
38
- </span>
32
+ <small>{{ item.text.inline }}</small>
39
33
 
40
- </p>
34
+ {% endif %}
41
35
 
42
- {% endif %}
36
+ </span>
37
+
38
+ </p>
@@ -1,12 +1,13 @@
1
1
 
2
- {% include html/assign/name.liquid parent=item.textarea %}
2
+ {% include html/assign/name.liquid parent=item.textarea.label %}
3
3
 
4
4
  <p class="block form-row textarea-row">
5
5
 
6
- {% include {{ LoopForm | append : 'label.liquid' }}
7
- title = item.textarea
8
- small = item.small
9
- subtitle = item.subtitle
6
+ {% include {{ ContentLoop | append : 'label.liquid' }}
7
+ label = item.textarea.label
8
+ small = item.textarea.small
9
+ subtitle = item.textarea.subtitle
10
+ required = item.textarea.required
10
11
  position = "top" %}
11
12
 
12
13
  <span class="wrap textarea">
@@ -2,7 +2,7 @@
2
2
  {% if item.yousaved %}
3
3
 
4
4
  {% include {{ SiteContent | append : 'loop.liquid' }}
5
- type = "yousaved" %}
5
+ type = "yousaved" %}
6
6
 
7
7
  {% elsif item.legend %}
8
8
 
@@ -11,7 +11,7 @@
11
11
  {% elsif item.addr %}
12
12
 
13
13
  {% include {{ LoopForm | append : 'radio.liquid' }}
14
- type = "address" %}
14
+ type = "address" %}
15
15
 
16
16
  {% elsif item.number %}
17
17
 
@@ -40,7 +40,7 @@
40
40
  {% elsif item.alert %}
41
41
 
42
42
  {% include {{ LoopForm | append : 'alert.liquid' }}
43
- context = include.context %}
43
+ context = include.context %}
44
44
 
45
45
  {% elsif item.message %}
46
46
 
@@ -54,6 +54,10 @@
54
54
 
55
55
  {% include {{ LoopForm | append : 'text.liquid' }} %}
56
56
 
57
+ {% elsif item.email %}
58
+
59
+ {% include {{ LoopForm | append : 'email.liquid' }} %}
60
+
57
61
  {% elsif item.password %}
58
62
 
59
63
  {% include {{ LoopForm | append : 'password.liquid' }} %}
@@ -68,10 +72,13 @@
68
72
 
69
73
  {% elsif item.checkbox %}
70
74
 
71
- {% include {{ ContentLoop | append : 'checkbox.liquid' }}
72
- title = item.checkbox
73
- form = true
74
- nolabel = true %}
75
+ <p class="block form-row checkbox-row">
76
+
77
+ {% include {{ ContentLoop | append : 'checkbox.liquid' }}
78
+ label = item.checkbox.label
79
+ nolabel = true %}
80
+
81
+ </p>
75
82
 
76
83
  {% elsif item.button %}
77
84
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  <div class="block search-form">
5
5
 
6
- {%- include {{ LoopForm | append : 'input.liquid' }}
6
+ {%- include {{ ContentLoop | append : 'input.liquid' }}
7
7
  type = "text"
8
8
  id = unique
9
9
  placeholder = page.header.search
@@ -0,0 +1,17 @@
1
+
2
+ {% if include.name %}
3
+
4
+ {% assign group = include.name %}
5
+
6
+ {% else %}
7
+
8
+ {% assign group = name %}
9
+
10
+ {% endif %}
11
+
12
+ <input {% if include.required %}class="is-required"{% endif %}
13
+ type = "{{ include.type }}"
14
+ id = "{{ name }}"
15
+ name = "{{ group }}"
16
+ value = "{{ include.value }}"
17
+ {% if include.placeholder %}placeholder="{{ include.placeholder }}"{% endif %}>
@@ -0,0 +1,16 @@
1
+
2
+ <span class="block
3
+ {{ PageTitle | prepend: 'title-' }}
4
+ {% if include.price %}has-price{% endif %}
5
+ {% if include.nolabel %}no-label{% endif %}
6
+ {% if include.alert %}form-alert{% endif %}">
7
+
8
+ <span>{{ include.title }}</span>
9
+
10
+ {% if include.price %}
11
+
12
+ <span>{{ include.price | prepend: '£' }}</span>
13
+
14
+ {% endif %}
15
+
16
+ </span>
@@ -4,14 +4,34 @@
4
4
  {% if include.class %}{{ include.class }}{% else %}form-label{% endif %}
5
5
  {% if include.position %}{{ include.position | prepend : 'style-' }}{% else %}style-top{% endif %}">
6
6
 
7
- {{ include.title }}
7
+ {{ include.label }}
8
8
 
9
9
  {% if include.small %}
10
- <small> {{ include.small }} </small>
10
+
11
+ <small>
12
+
13
+ {{ include.small }}
14
+
15
+ </small>
16
+
11
17
  {% endif %}
12
18
 
13
- {% if include.subtitle %}
14
- <br><small> {{ include.subtitle }} </small>
19
+ {% if include.required %}
20
+
21
+ <small>(required)</small>
22
+
15
23
  {% endif %}
16
24
 
25
+ {% if include.subtitle %}
26
+
27
+ <br>
28
+
29
+ <small>
30
+
31
+ {{ include.subtitle }}
32
+
33
+ </small>
34
+
35
+ {% endif %}
36
+
17
37
  </label>
@@ -0,0 +1,6 @@
1
+
2
+ <div class="ticker onemoment">
3
+
4
+ <div class="ticker message">{{ include.ticker }}</div>
5
+
6
+ </div>
@@ -33,9 +33,9 @@
33
33
 
34
34
  {% elsif RowType == "alert" %}
35
35
 
36
- {%- include {{ LoopAlert | append : 'create.liquid' }}
37
- context = "screen"
38
- title = item.row.title -%}
36
+ {%- include {{ ContentLoop | append : 'alert.liquid' }}
37
+ title = item.row.title
38
+ type = "whatson" -%}
39
39
 
40
40
  {% endif %}
41
41
 
@@ -29,11 +29,11 @@
29
29
 
30
30
  </span>
31
31
 
32
- {%- elsif RowType == "alert" -%}
32
+ <!-- {%- elsif RowType == "alert" -%}
33
33
 
34
34
  {%- include {{ LoopAlert | append : 'create.liquid' }}
35
35
  context = "screen"
36
- title = item.row.title -%}
36
+ title = item.row.title -%} -->
37
37
 
38
38
  {%- elsif RowType == "event" or
39
39
  RowType == "retail" -%}