hr-design-system-handlebars 1.119.5 → 1.119.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/assets/index.css +3 -3
- package/dist/views/components/content/content_footer/content_footer_ticker_item.hbs +73 -51
- package/dist/views_static/components/content/content_footer/content_footer_ticker_item.hbs +73 -51
- package/package.json +1 -1
- package/src/stories/views/components/content/content_footer/content_footer_ticker_item.hbs +73 -51
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.119.6 (Mon Oct 06 2025)
|
|
2
|
+
|
|
3
|
+
#### ⚠️ Pushed to `main`
|
|
4
|
+
|
|
5
|
+
- Reorder elements in content footer ([@Paul-Atreidis](https://github.com/Paul-Atreidis))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@Paul-Atreidis](https://github.com/Paul-Atreidis)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.119.5 (Thu Oct 02 2025)
|
|
2
14
|
|
|
3
15
|
#### ⚠️ Pushed to `main`
|
package/dist/assets/index.css
CHANGED
|
@@ -3891,7 +3891,7 @@ article #commentList {
|
|
|
3891
3891
|
border-bottom-color: var(--color-secondary-ds);
|
|
3892
3892
|
}
|
|
3893
3893
|
.counter-reset {
|
|
3894
|
-
counter-reset:
|
|
3894
|
+
counter-reset: cnt1759769023057;
|
|
3895
3895
|
}
|
|
3896
3896
|
.animate-delay-100 {
|
|
3897
3897
|
--tw-animate-delay: 100ms;
|
|
@@ -4352,7 +4352,7 @@ html { scroll-behavior: smooth; }
|
|
|
4352
4352
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4353
4353
|
}
|
|
4354
4354
|
.-ordered {
|
|
4355
|
-
counter-increment:
|
|
4355
|
+
counter-increment: cnt1759769023057 1;
|
|
4356
4356
|
}
|
|
4357
4357
|
.-ordered::before {
|
|
4358
4358
|
position: absolute;
|
|
@@ -4370,7 +4370,7 @@ html { scroll-behavior: smooth; }
|
|
|
4370
4370
|
--tw-text-opacity: 1;
|
|
4371
4371
|
color: rgba(0, 0, 0, 1);
|
|
4372
4372
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4373
|
-
content: counter(
|
|
4373
|
+
content: counter(cnt1759769023057);
|
|
4374
4374
|
}
|
|
4375
4375
|
/*! ****************************/
|
|
4376
4376
|
/*! DataPolicy stuff */
|
|
@@ -1,57 +1,79 @@
|
|
|
1
1
|
<footer class="flex flex-col mt-12 sm:mt-14 text-xs md:text-sm text-gray-scorpion dark:text-text-dark font-headingSerif{{#if _addClass}} {{_addClass}}{{/if}}">
|
|
2
|
-
|
|
3
|
-
{{
|
|
4
|
-
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
{{#if this.
|
|
8
|
-
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"~}}
|
|
9
|
-
|
|
10
|
-
<span>
|
|
11
|
-
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
12
|
-
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
13
|
-
{{#if this.displayWithTime}}
|
|
14
|
-
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
15
|
-
{{else}}
|
|
16
|
-
{{this.date.date}}
|
|
17
|
-
{{/if}}
|
|
18
|
-
</time>
|
|
19
|
-
</span>
|
|
20
|
-
{{/if}}
|
|
2
|
+
{{#if this.hasMoreThanOneAuthor~}}
|
|
3
|
+
{{#with this.editorialStaffItems}}
|
|
4
|
+
<p>
|
|
5
|
+
<span>Von:</span>
|
|
6
|
+
{{#each this}}
|
|
7
|
+
{{#if this.hasProfileLink}}
|
|
8
|
+
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"}}<span>{{../this.authorName~}}</span>{{/components/base/link~}}
|
|
9
|
+
{{~#with this.textAfterAuthor}}{{this}}{{/with}}{{~this.delimiter~}}
|
|
21
10
|
{{else}}
|
|
22
|
-
|
|
23
|
-
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
24
|
-
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
25
|
-
{{#if this.displayWithTime}}
|
|
26
|
-
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
27
|
-
{{else}}
|
|
28
|
-
{{this.date.date}}
|
|
29
|
-
{{/if}}
|
|
30
|
-
</time>
|
|
31
|
-
{{/if}}
|
|
32
|
-
</span>
|
|
11
|
+
{{#with this.textAfterAuthor}}{{this}}{{/with}}{{this.delimiter}}
|
|
33
12
|
{{/if}}
|
|
34
|
-
|
|
35
|
-
{{~/if~}}
|
|
36
|
-
{{~/with~}}
|
|
37
|
-
{{~#with _source}}
|
|
38
|
-
<p>
|
|
39
|
-
{{~loca "copyright_source"~}}
|
|
40
|
-
{{~#each this}}
|
|
41
|
-
{{~#if @first}} {{this}}{{else}}, {{this}}{{/if~}}
|
|
42
|
-
{{/each~}}
|
|
13
|
+
{{/each}}
|
|
43
14
|
</p>
|
|
44
|
-
{{/with
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
15
|
+
{{/with}}
|
|
16
|
+
{{else}}
|
|
17
|
+
<div>
|
|
18
|
+
{{#if this.hasOneAuthor~}}
|
|
19
|
+
{{#if this.authorImage.isImage}}
|
|
20
|
+
<div class="self-start w-10 h-10 mr-4 basis-10 grow-0">
|
|
21
|
+
{{~> components/base/image/responsive_image this.authorImage
|
|
22
|
+
_type="profile"
|
|
23
|
+
_variant="ticker"
|
|
24
|
+
_addClass=""
|
|
25
|
+
_addClassImg="ar-1-1 rounded-full"
|
|
26
|
+
_noDelay=true ~}}
|
|
27
|
+
</div>
|
|
56
28
|
{{/if}}
|
|
29
|
+
{{#with this.editorialStaffItems}}
|
|
30
|
+
<div>
|
|
31
|
+
<span>Von:</span>
|
|
32
|
+
{{#each this}}
|
|
33
|
+
{{#if this.hasProfileLink}}
|
|
34
|
+
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"}}<span>{{../this.authorName~}}</span>{{/components/base/link~}}
|
|
35
|
+
{{~#with this.textAfterAuthor}}{{this}}{{/with}}{{~this.delimiter~}}
|
|
36
|
+
{{else}}
|
|
37
|
+
{{#with this.textAfterAuthor}}{{this}}{{/with}}{{this.delimiter}}
|
|
38
|
+
{{/if}}
|
|
39
|
+
{{/each}}
|
|
40
|
+
</div>
|
|
41
|
+
{{/with}}
|
|
42
|
+
{{/if}}
|
|
43
|
+
{{/if}}
|
|
44
|
+
{{~#with this.programReferenceAlt~}}
|
|
45
|
+
{{~#if this.hasReference~}}
|
|
46
|
+
<div>
|
|
47
|
+
<span>{{~loca "broadcast"}}:</span>
|
|
48
|
+
{{#if this.link}}
|
|
49
|
+
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"~}}
|
|
50
|
+
<span>{{~ this.programLabel ~}}</span>{{/components/base/link~}}{{~#if this.date~}},
|
|
51
|
+
<span>
|
|
52
|
+
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
53
|
+
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
54
|
+
{{#if this.displayWithTime}}
|
|
55
|
+
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
56
|
+
{{else}}
|
|
57
|
+
{{this.date.date}}
|
|
58
|
+
{{/if}}
|
|
59
|
+
</time>
|
|
60
|
+
</span>
|
|
61
|
+
{{/if}}
|
|
62
|
+
{{else}}
|
|
63
|
+
<span>{{this.programLabel}}{{#if this.date}},
|
|
64
|
+
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
65
|
+
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
66
|
+
{{#if this.displayWithTime}}
|
|
67
|
+
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
68
|
+
{{else}}
|
|
69
|
+
{{this.date.date}}
|
|
70
|
+
{{/if}}
|
|
71
|
+
</time>
|
|
72
|
+
{{/if}}
|
|
73
|
+
</span>
|
|
74
|
+
{{/if}}
|
|
75
|
+
</div>
|
|
76
|
+
{{~/if~}}
|
|
77
|
+
{{~/with~}}
|
|
78
|
+
</div>
|
|
57
79
|
</footer>
|
|
@@ -1,57 +1,79 @@
|
|
|
1
1
|
<footer class="flex flex-col mt-12 sm:mt-14 text-xs md:text-sm text-gray-scorpion dark:text-text-dark font-headingSerif{{#if _addClass}} {{_addClass}}{{/if}}">
|
|
2
|
-
|
|
3
|
-
{{
|
|
4
|
-
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
{{#if this.
|
|
8
|
-
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"~}}
|
|
9
|
-
|
|
10
|
-
<span>
|
|
11
|
-
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
12
|
-
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
13
|
-
{{#if this.displayWithTime}}
|
|
14
|
-
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
15
|
-
{{else}}
|
|
16
|
-
{{this.date.date}}
|
|
17
|
-
{{/if}}
|
|
18
|
-
</time>
|
|
19
|
-
</span>
|
|
20
|
-
{{/if}}
|
|
2
|
+
{{#if this.hasMoreThanOneAuthor~}}
|
|
3
|
+
{{#with this.editorialStaffItems}}
|
|
4
|
+
<p>
|
|
5
|
+
<span>Von:</span>
|
|
6
|
+
{{#each this}}
|
|
7
|
+
{{#if this.hasProfileLink}}
|
|
8
|
+
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"}}<span>{{../this.authorName~}}</span>{{/components/base/link~}}
|
|
9
|
+
{{~#with this.textAfterAuthor}}{{this}}{{/with}}{{~this.delimiter~}}
|
|
21
10
|
{{else}}
|
|
22
|
-
|
|
23
|
-
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
24
|
-
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
25
|
-
{{#if this.displayWithTime}}
|
|
26
|
-
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
27
|
-
{{else}}
|
|
28
|
-
{{this.date.date}}
|
|
29
|
-
{{/if}}
|
|
30
|
-
</time>
|
|
31
|
-
{{/if}}
|
|
32
|
-
</span>
|
|
11
|
+
{{#with this.textAfterAuthor}}{{this}}{{/with}}{{this.delimiter}}
|
|
33
12
|
{{/if}}
|
|
34
|
-
|
|
35
|
-
{{~/if~}}
|
|
36
|
-
{{~/with~}}
|
|
37
|
-
{{~#with _source}}
|
|
38
|
-
<p>
|
|
39
|
-
{{~loca "copyright_source"~}}
|
|
40
|
-
{{~#each this}}
|
|
41
|
-
{{~#if @first}} {{this}}{{else}}, {{this}}{{/if~}}
|
|
42
|
-
{{/each~}}
|
|
13
|
+
{{/each}}
|
|
43
14
|
</p>
|
|
44
|
-
{{/with
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
15
|
+
{{/with}}
|
|
16
|
+
{{else}}
|
|
17
|
+
<div>
|
|
18
|
+
{{#if this.hasOneAuthor~}}
|
|
19
|
+
{{#if this.authorImage.isImage}}
|
|
20
|
+
<div class="self-start w-10 h-10 mr-4 basis-10 grow-0">
|
|
21
|
+
{{~> components/base/image/responsive_image this.authorImage
|
|
22
|
+
_type="profile"
|
|
23
|
+
_variant="ticker"
|
|
24
|
+
_addClass=""
|
|
25
|
+
_addClassImg="ar-1-1 rounded-full"
|
|
26
|
+
_noDelay=true ~}}
|
|
27
|
+
</div>
|
|
56
28
|
{{/if}}
|
|
29
|
+
{{#with this.editorialStaffItems}}
|
|
30
|
+
<div>
|
|
31
|
+
<span>Von:</span>
|
|
32
|
+
{{#each this}}
|
|
33
|
+
{{#if this.hasProfileLink}}
|
|
34
|
+
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"}}<span>{{../this.authorName~}}</span>{{/components/base/link~}}
|
|
35
|
+
{{~#with this.textAfterAuthor}}{{this}}{{/with}}{{~this.delimiter~}}
|
|
36
|
+
{{else}}
|
|
37
|
+
{{#with this.textAfterAuthor}}{{this}}{{/with}}{{this.delimiter}}
|
|
38
|
+
{{/if}}
|
|
39
|
+
{{/each}}
|
|
40
|
+
</div>
|
|
41
|
+
{{/with}}
|
|
42
|
+
{{/if}}
|
|
43
|
+
{{/if}}
|
|
44
|
+
{{~#with this.programReferenceAlt~}}
|
|
45
|
+
{{~#if this.hasReference~}}
|
|
46
|
+
<div>
|
|
47
|
+
<span>{{~loca "broadcast"}}:</span>
|
|
48
|
+
{{#if this.link}}
|
|
49
|
+
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"~}}
|
|
50
|
+
<span>{{~ this.programLabel ~}}</span>{{/components/base/link~}}{{~#if this.date~}},
|
|
51
|
+
<span>
|
|
52
|
+
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
53
|
+
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
54
|
+
{{#if this.displayWithTime}}
|
|
55
|
+
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
56
|
+
{{else}}
|
|
57
|
+
{{this.date.date}}
|
|
58
|
+
{{/if}}
|
|
59
|
+
</time>
|
|
60
|
+
</span>
|
|
61
|
+
{{/if}}
|
|
62
|
+
{{else}}
|
|
63
|
+
<span>{{this.programLabel}}{{#if this.date}},
|
|
64
|
+
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
65
|
+
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
66
|
+
{{#if this.displayWithTime}}
|
|
67
|
+
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
68
|
+
{{else}}
|
|
69
|
+
{{this.date.date}}
|
|
70
|
+
{{/if}}
|
|
71
|
+
</time>
|
|
72
|
+
{{/if}}
|
|
73
|
+
</span>
|
|
74
|
+
{{/if}}
|
|
75
|
+
</div>
|
|
76
|
+
{{~/if~}}
|
|
77
|
+
{{~/with~}}
|
|
78
|
+
</div>
|
|
57
79
|
</footer>
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"repository": "https://github.com/szuelch/hr-design-system-handlebars",
|
|
9
|
-
"version": "1.119.
|
|
9
|
+
"version": "1.119.6",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -1,57 +1,79 @@
|
|
|
1
1
|
<footer class="flex flex-col mt-12 sm:mt-14 text-xs md:text-sm text-gray-scorpion dark:text-text-dark font-headingSerif{{#if _addClass}} {{_addClass}}{{/if}}">
|
|
2
|
-
|
|
3
|
-
{{
|
|
4
|
-
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
{{#if this.
|
|
8
|
-
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"~}}
|
|
9
|
-
|
|
10
|
-
<span>
|
|
11
|
-
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
12
|
-
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
13
|
-
{{#if this.displayWithTime}}
|
|
14
|
-
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
15
|
-
{{else}}
|
|
16
|
-
{{this.date.date}}
|
|
17
|
-
{{/if}}
|
|
18
|
-
</time>
|
|
19
|
-
</span>
|
|
20
|
-
{{/if}}
|
|
2
|
+
{{#if this.hasMoreThanOneAuthor~}}
|
|
3
|
+
{{#with this.editorialStaffItems}}
|
|
4
|
+
<p>
|
|
5
|
+
<span>Von:</span>
|
|
6
|
+
{{#each this}}
|
|
7
|
+
{{#if this.hasProfileLink}}
|
|
8
|
+
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"}}<span>{{../this.authorName~}}</span>{{/components/base/link~}}
|
|
9
|
+
{{~#with this.textAfterAuthor}}{{this}}{{/with}}{{~this.delimiter~}}
|
|
21
10
|
{{else}}
|
|
22
|
-
|
|
23
|
-
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
24
|
-
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
25
|
-
{{#if this.displayWithTime}}
|
|
26
|
-
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
27
|
-
{{else}}
|
|
28
|
-
{{this.date.date}}
|
|
29
|
-
{{/if}}
|
|
30
|
-
</time>
|
|
31
|
-
{{/if}}
|
|
32
|
-
</span>
|
|
11
|
+
{{#with this.textAfterAuthor}}{{this}}{{/with}}{{this.delimiter}}
|
|
33
12
|
{{/if}}
|
|
34
|
-
|
|
35
|
-
{{~/if~}}
|
|
36
|
-
{{~/with~}}
|
|
37
|
-
{{~#with _source}}
|
|
38
|
-
<p>
|
|
39
|
-
{{~loca "copyright_source"~}}
|
|
40
|
-
{{~#each this}}
|
|
41
|
-
{{~#if @first}} {{this}}{{else}}, {{this}}{{/if~}}
|
|
42
|
-
{{/each~}}
|
|
13
|
+
{{/each}}
|
|
43
14
|
</p>
|
|
44
|
-
{{/with
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
15
|
+
{{/with}}
|
|
16
|
+
{{else}}
|
|
17
|
+
<div>
|
|
18
|
+
{{#if this.hasOneAuthor~}}
|
|
19
|
+
{{#if this.authorImage.isImage}}
|
|
20
|
+
<div class="self-start w-10 h-10 mr-4 basis-10 grow-0">
|
|
21
|
+
{{~> components/base/image/responsive_image this.authorImage
|
|
22
|
+
_type="profile"
|
|
23
|
+
_variant="ticker"
|
|
24
|
+
_addClass=""
|
|
25
|
+
_addClassImg="ar-1-1 rounded-full"
|
|
26
|
+
_noDelay=true ~}}
|
|
27
|
+
</div>
|
|
56
28
|
{{/if}}
|
|
29
|
+
{{#with this.editorialStaffItems}}
|
|
30
|
+
<div>
|
|
31
|
+
<span>Von:</span>
|
|
32
|
+
{{#each this}}
|
|
33
|
+
{{#if this.hasProfileLink}}
|
|
34
|
+
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"}}<span>{{../this.authorName~}}</span>{{/components/base/link~}}
|
|
35
|
+
{{~#with this.textAfterAuthor}}{{this}}{{/with}}{{~this.delimiter~}}
|
|
36
|
+
{{else}}
|
|
37
|
+
{{#with this.textAfterAuthor}}{{this}}{{/with}}{{this.delimiter}}
|
|
38
|
+
{{/if}}
|
|
39
|
+
{{/each}}
|
|
40
|
+
</div>
|
|
41
|
+
{{/with}}
|
|
42
|
+
{{/if}}
|
|
43
|
+
{{/if}}
|
|
44
|
+
{{~#with this.programReferenceAlt~}}
|
|
45
|
+
{{~#if this.hasReference~}}
|
|
46
|
+
<div>
|
|
47
|
+
<span>{{~loca "broadcast"}}:</span>
|
|
48
|
+
{{#if this.link}}
|
|
49
|
+
{{#>components/base/link _link=this.link _css="text-link dark:text-link-dark hover:underline"~}}
|
|
50
|
+
<span>{{~ this.programLabel ~}}</span>{{/components/base/link~}}{{~#if this.date~}},
|
|
51
|
+
<span>
|
|
52
|
+
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
53
|
+
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
54
|
+
{{#if this.displayWithTime}}
|
|
55
|
+
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
56
|
+
{{else}}
|
|
57
|
+
{{this.date.date}}
|
|
58
|
+
{{/if}}
|
|
59
|
+
</time>
|
|
60
|
+
</span>
|
|
61
|
+
{{/if}}
|
|
62
|
+
{{else}}
|
|
63
|
+
<span>{{this.programLabel}}{{#if this.date}},
|
|
64
|
+
<time datetime="{{#if this.displayWithTime}}{{this.date.htmlDateTime}}{{else}}{{this.date.date}}{{/if}}"
|
|
65
|
+
class="{{#if _isArticle}}{{else}}{{/if}} ">
|
|
66
|
+
{{#if this.displayWithTime}}
|
|
67
|
+
{{loca "date_simple_at" this.date.dateSeparatorTime}}
|
|
68
|
+
{{else}}
|
|
69
|
+
{{this.date.date}}
|
|
70
|
+
{{/if}}
|
|
71
|
+
</time>
|
|
72
|
+
{{/if}}
|
|
73
|
+
</span>
|
|
74
|
+
{{/if}}
|
|
75
|
+
</div>
|
|
76
|
+
{{~/if~}}
|
|
77
|
+
{{~/with~}}
|
|
78
|
+
</div>
|
|
57
79
|
</footer>
|