@parameter1/base-cms-marko-web 3.8.0 → 3.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. package/components/browser-component.marko.js +86 -0
  2. package/components/document/components/body-wrapper.marko.js +33 -0
  3. package/components/document/components/error.marko.js +85 -0
  4. package/components/document/components/live-reload.marko.js +30 -0
  5. package/components/document/container.marko.js +54 -0
  6. package/components/document/index.marko.js +118 -0
  7. package/components/element/array.marko.js +67 -0
  8. package/components/element/block.marko.js +44 -0
  9. package/components/element/clear.marko.js +32 -0
  10. package/components/element/components/image.marko.js +62 -0
  11. package/components/element/components/text.marko.js +37 -0
  12. package/components/element/content/address1.marko.js +40 -0
  13. package/components/element/content/address2.marko.js +40 -0
  14. package/components/element/content/authors.marko.js +43 -0
  15. package/components/element/content/body.marko.js +62 -0
  16. package/components/element/content/byline.marko.js +41 -0
  17. package/components/element/content/city-state-zip.marko.js +40 -0
  18. package/components/element/content/contributors.marko.js +43 -0
  19. package/components/element/content/country.marko.js +40 -0
  20. package/components/element/content/embed-code.marko.js +41 -0
  21. package/components/element/content/end-date.marko.js +42 -0
  22. package/components/element/content/fax.marko.js +40 -0
  23. package/components/element/content/mobile.marko.js +40 -0
  24. package/components/element/content/name.marko.js +41 -0
  25. package/components/element/content/phone.marko.js +40 -0
  26. package/components/element/content/photographers.marko.js +43 -0
  27. package/components/element/content/public-email.marko.js +47 -0
  28. package/components/element/content/published.marko.js +42 -0
  29. package/components/element/content/short-name.marko.js +41 -0
  30. package/components/element/content/sidebars.marko.js +63 -0
  31. package/components/element/content/source.marko.js +40 -0
  32. package/components/element/content/sponsors.marko.js +43 -0
  33. package/components/element/content/start-date.marko.js +42 -0
  34. package/components/element/content/teaser.marko.js +41 -0
  35. package/components/element/content/title.marko.js +40 -0
  36. package/components/element/content/tollfree.marko.js +40 -0
  37. package/components/element/content/website.marko.js +51 -0
  38. package/components/element/date.marko.js +27 -0
  39. package/components/element/image/caption.marko.js +41 -0
  40. package/components/element/image/credit.marko.js +41 -0
  41. package/components/element/image/display-name.marko.js +40 -0
  42. package/components/element/img.marko.js +43 -0
  43. package/components/element/index.marko.js +47 -0
  44. package/components/element/link.marko.js +54 -0
  45. package/components/element/obj-array.marko.js +56 -0
  46. package/components/element/obj-date.marko.js +54 -0
  47. package/components/element/obj-nodes.marko.js +62 -0
  48. package/components/element/obj-text.marko.js +53 -0
  49. package/components/element/obj.marko.js +61 -0
  50. package/components/element/picture.marko.js +85 -0
  51. package/components/element/text.marko.js +76 -0
  52. package/components/element/website-section/name.marko.js +46 -0
  53. package/components/load-more/index.marko.js +119 -0
  54. package/components/load-more/trigger.marko.js +40 -0
  55. package/components/node/body.marko.js +112 -0
  56. package/components/node/element.marko.js +39 -0
  57. package/components/node/footer.marko.js +63 -0
  58. package/components/node/header.marko.js +63 -0
  59. package/components/node/image-inner-wrapper.marko.js +116 -0
  60. package/components/node/image-wrapper.marko.js +98 -0
  61. package/components/node/image.marko.js +93 -0
  62. package/components/node/index.marko.js +100 -0
  63. package/components/node-list/body.marko.js +50 -0
  64. package/components/node-list/element.marko.js +35 -0
  65. package/components/node-list/footer.marko.js +50 -0
  66. package/components/node-list/header.marko.js +50 -0
  67. package/components/node-list/index.marko.js +93 -0
  68. package/components/node-list/node.marko.js +49 -0
  69. package/components/node-list/nodes.marko.js +126 -0
  70. package/components/page/container.marko.js +46 -0
  71. package/components/page/description.marko.js +26 -0
  72. package/components/page/image.marko.js +122 -0
  73. package/components/page/layouts/content.marko.js +63 -0
  74. package/components/page/layouts/default.marko.js +61 -0
  75. package/components/page/layouts/website-section.marko.js +78 -0
  76. package/components/page/metadata/components/common.marko.js +108 -0
  77. package/components/page/metadata/content.marko.js +201 -0
  78. package/components/page/metadata/default.marko.js +29 -0
  79. package/components/page/metadata/website-section.marko.js +79 -0
  80. package/components/page/rel-canonical.marko.js +42 -0
  81. package/components/page/title.marko.js +46 -0
  82. package/components/page/wrapper.marko.js +63 -0
  83. package/components/resolve/page.marko.js +49 -0
  84. package/components/rss/website-section.marko.js +46 -0
  85. package/middleware/page-node/index.js +15 -2
  86. package/middleware/with-content.js +2 -0
  87. package/package.json +4 -4
@@ -0,0 +1,46 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/src/html").t(__filename),
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$3.11.0/components/page/container.marko",
6
+ marko_renderer = require("marko/src/runtime/components/renderer"),
7
+ module_baseCmsObjectPath_module = require("@parameter1/base-cms-object-path"),
8
+ baseCmsObjectPath_module = module_baseCmsObjectPath_module.default || module_baseCmsObjectPath_module,
9
+ getAsArray = module_baseCmsObjectPath_module.getAsArray,
10
+ marko_dynamicTag = require("marko/src/runtime/helpers/dynamic-tag"),
11
+ marko_assign = require("marko/src/runtime/helpers/assign");
12
+
13
+ function render(input, out, __component, component, state) {
14
+ var data = input;
15
+
16
+ const tag = input.tag || "main";
17
+
18
+ const blockName = "page";
19
+
20
+ const classes = [blockName, ...getAsArray(input.modifiers).map(mod => `${blockName}--${mod}`)];
21
+
22
+ if (input.for) classes.push(`${blockName}--${input.for}`);
23
+
24
+ if (input.for && input.id) classes.push(`${blockName}--${input.for}-${input.id}`);
25
+
26
+ if (input.for && input.type) classes.push(`${blockName}--${input.for}-${input.type}`);
27
+
28
+ if (input.class) classes.push(input.class);
29
+
30
+ marko_dynamicTag(out, tag, function() {
31
+ return marko_assign({}, input.attrs, {
32
+ class: classes
33
+ });
34
+ }, function(out) {
35
+ marko_dynamicTag(out, input.renderBody, null, null, null, null, __component, "1");
36
+ }, null, null, __component, "0");
37
+ }
38
+
39
+ marko_template._ = marko_renderer(render, {
40
+ ___implicit: true,
41
+ ___type: marko_componentType
42
+ });
43
+
44
+ marko_template.meta = {
45
+ id: "/@parameter1/base-cms-marko-web$3.11.0/components/page/container.marko"
46
+ };
@@ -0,0 +1,26 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/src/html").t(__filename),
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$3.11.0/components/page/description.marko",
6
+ marko_renderer = require("marko/src/runtime/components/renderer"),
7
+ marko_attr = require("marko/src/runtime/html/helpers/attr");
8
+
9
+ function render(input, out, __component, component, state) {
10
+ var data = input;
11
+
12
+ if (input.value) {
13
+ out.w("<meta name=\"description\" property=\"og:description\" item-prop=\"description\"" +
14
+ marko_attr("content", input.value) +
15
+ ">");
16
+ }
17
+ }
18
+
19
+ marko_template._ = marko_renderer(render, {
20
+ ___implicit: true,
21
+ ___type: marko_componentType
22
+ });
23
+
24
+ marko_template.meta = {
25
+ id: "/@parameter1/base-cms-marko-web$3.11.0/components/page/description.marko"
26
+ };
@@ -0,0 +1,122 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/src/html").t(__filename),
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$3.11.0/components/page/image.marko",
6
+ marko_renderer = require("marko/src/runtime/components/renderer"),
7
+ module_baseCmsImage_module = require("@parameter1/base-cms-image"),
8
+ baseCmsImage_module = module_baseCmsImage_module.default || module_baseCmsImage_module,
9
+ buildImgixUrl = module_baseCmsImage_module.buildImgixUrl,
10
+ module_baseCmsObjectPath_module = require("@parameter1/base-cms-object-path"),
11
+ baseCmsObjectPath_module = module_baseCmsObjectPath_module.default || module_baseCmsObjectPath_module,
12
+ getAsObject = module_baseCmsObjectPath_module.getAsObject,
13
+ getAsArray = module_baseCmsObjectPath_module.getAsArray,
14
+ marko_web_image_display_name_template = require("../element/image/display-name.marko"),
15
+ marko_loadTag = require("marko/src/runtime/helpers/load-tag"),
16
+ marko_web_image_display_name_tag = marko_loadTag(marko_web_image_display_name_template),
17
+ marko_web_img_template = require("../element/img.marko"),
18
+ marko_web_img_tag = marko_loadTag(marko_web_img_template),
19
+ marko_classAttr = require("marko/src/runtime/html/helpers/class-attr"),
20
+ marko_web_image_caption_template = require("../element/image/caption.marko"),
21
+ marko_web_image_caption_tag = marko_loadTag(marko_web_image_caption_template),
22
+ marko_web_image_credit_template = require("../element/image/credit.marko"),
23
+ marko_web_image_credit_tag = marko_loadTag(marko_web_image_credit_template),
24
+ marko_web_block_template = require("../element/block.marko"),
25
+ marko_web_block_tag = marko_loadTag(marko_web_block_template);
26
+
27
+ function render(input, out, __component, component, state) {
28
+ var data = input;
29
+
30
+ const blockName = input.blockName || "page-image";
31
+
32
+ const image = getAsObject(input, "obj");
33
+
34
+ const withCaption = input.withCaption != null ? input.withCaption : true;
35
+
36
+ const withCredit = input.withCredit != null ? input.withCredit : true;
37
+
38
+ const withDisplayName = input.withDisplayName != null ? input.withDisplayName : false;
39
+
40
+ const lazyload = input.lazyload != null ? input.lazyload : true;
41
+
42
+ const width = input.width != null ? input.width : 320;
43
+
44
+ const modifiers = [...getAsArray(input, "modifiers")];
45
+
46
+ const fluid = input.fluid != null ? input.fluid : true;
47
+
48
+ if (fluid) modifiers.push("fluid");
49
+
50
+ const hasImage = Boolean(image.src);
51
+
52
+ const imageOptions = { w: width, ...input.options };
53
+
54
+ const imageAttrs = {};
55
+
56
+ if (image.id) imageAttrs["data-image-id"] = image.id;
57
+
58
+ if (hasImage) {
59
+ const src = buildImgixUrl(image.src, imageOptions);
60
+
61
+ const srcset = [`${buildImgixUrl(src, { dpr: 2 })} 2x`];
62
+
63
+ marko_web_block_tag({
64
+ name: blockName,
65
+ tag: "div",
66
+ modifiers: modifiers,
67
+ renderBody: function(out) {
68
+ if (withDisplayName) {
69
+ marko_web_image_display_name_tag({
70
+ blockName: blockName,
71
+ obj: image
72
+ }, out, __component, "1");
73
+ }
74
+
75
+ out.w("<div" +
76
+ marko_classAttr(blockName + "__wrapper") +
77
+ ">");
78
+
79
+ marko_web_img_tag({
80
+ lazyload: lazyload,
81
+ src: src,
82
+ srcset: srcset,
83
+ alt: image.alt,
84
+ class: blockName + "__image",
85
+ attrs: imageAttrs
86
+ }, out, __component, "3");
87
+
88
+ out.w("</div>");
89
+
90
+ if (withCaption) {
91
+ marko_web_image_caption_tag({
92
+ blockName: blockName,
93
+ obj: image
94
+ }, out, __component, "4");
95
+ }
96
+
97
+ if (withCredit) {
98
+ marko_web_image_credit_tag({
99
+ blockName: blockName,
100
+ obj: image
101
+ }, out, __component, "5");
102
+ }
103
+ }
104
+ }, out, __component, "0");
105
+ }
106
+ }
107
+
108
+ marko_template._ = marko_renderer(render, {
109
+ ___implicit: true,
110
+ ___type: marko_componentType
111
+ });
112
+
113
+ marko_template.meta = {
114
+ id: "/@parameter1/base-cms-marko-web$3.11.0/components/page/image.marko",
115
+ tags: [
116
+ "../element/image/display-name.marko",
117
+ "../element/img.marko",
118
+ "../element/image/caption.marko",
119
+ "../element/image/credit.marko",
120
+ "../element/block.marko"
121
+ ]
122
+ };
@@ -0,0 +1,63 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/src/html").t(__filename),
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$3.11.0/components/page/layouts/content.marko",
6
+ marko_renderer = require("marko/src/runtime/components/renderer"),
7
+ marko_web_content_page_metadata_template = require("../metadata/content.marko"),
8
+ marko_loadTag = require("marko/src/runtime/helpers/load-tag"),
9
+ marko_web_content_page_metadata_tag = marko_loadTag(marko_web_content_page_metadata_template),
10
+ marko_dynamicTag = require("marko/src/runtime/helpers/dynamic-tag");
11
+
12
+ function render(input, out, __component, component, state) {
13
+ var data = input;
14
+
15
+ const { structuredDataQueryFragment, buildStructuredData, id, type } = input;
16
+
17
+ const { document } = out.global;
18
+
19
+ marko_dynamicTag(out, document, function() {
20
+ return {
21
+ "above-container": input.aboveContainer,
22
+ "below-container": input.belowContainer,
23
+ foot: input.foot,
24
+ head: {
25
+ renderBody: function(out) {
26
+ marko_web_content_page_metadata_tag({
27
+ id: id,
28
+ structuredDataQueryFragment: structuredDataQueryFragment,
29
+ buildStructuredData: buildStructuredData
30
+ }, out, __component, "2");
31
+
32
+ marko_dynamicTag(out, input.head, null, null, null, null, __component, "3");
33
+ }
34
+ },
35
+ container: {
36
+ abovePage: input.abovePage,
37
+ belowPage: input.belowPage,
38
+ page: {
39
+ for: "content",
40
+ tag: "article",
41
+ id: id,
42
+ type: type,
43
+ attrs: input.attrs,
44
+ renderBody: function(out) {
45
+ marko_dynamicTag(out, input.page, null, null, null, null, __component, "6");
46
+ }
47
+ }
48
+ }
49
+ };
50
+ }, null, null, null, __component, "0");
51
+ }
52
+
53
+ marko_template._ = marko_renderer(render, {
54
+ ___implicit: true,
55
+ ___type: marko_componentType
56
+ });
57
+
58
+ marko_template.meta = {
59
+ id: "/@parameter1/base-cms-marko-web$3.11.0/components/page/layouts/content.marko",
60
+ tags: [
61
+ "../metadata/content.marko"
62
+ ]
63
+ };
@@ -0,0 +1,61 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/src/html").t(__filename),
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$3.11.0/components/page/layouts/default.marko",
6
+ marko_renderer = require("marko/src/runtime/components/renderer"),
7
+ marko_web_default_page_metadata_template = require("../metadata/default.marko"),
8
+ marko_loadTag = require("marko/src/runtime/helpers/load-tag"),
9
+ marko_web_default_page_metadata_tag = marko_loadTag(marko_web_default_page_metadata_template),
10
+ marko_dynamicTag = require("marko/src/runtime/helpers/dynamic-tag");
11
+
12
+ function render(input, out, __component, component, state) {
13
+ var data = input;
14
+
15
+ const type = input.type || "default";
16
+
17
+ const { title, description } = input;
18
+
19
+ const { document } = out.global;
20
+
21
+ marko_dynamicTag(out, document, function() {
22
+ return {
23
+ "above-container": input.aboveContainer,
24
+ "below-container": input.belowContainer,
25
+ foot: input.foot,
26
+ head: {
27
+ renderBody: function(out) {
28
+ marko_web_default_page_metadata_tag({
29
+ title: title,
30
+ description: description
31
+ }, out, __component, "2");
32
+
33
+ marko_dynamicTag(out, input.head, null, null, null, null, __component, "3");
34
+ }
35
+ },
36
+ container: {
37
+ abovePage: input.abovePage,
38
+ belowPage: input.belowPage,
39
+ page: {
40
+ for: type,
41
+ attrs: input.attrs,
42
+ renderBody: function(out) {
43
+ marko_dynamicTag(out, input.page, null, null, null, null, __component, "6");
44
+ }
45
+ }
46
+ }
47
+ };
48
+ }, null, null, null, __component, "0");
49
+ }
50
+
51
+ marko_template._ = marko_renderer(render, {
52
+ ___implicit: true,
53
+ ___type: marko_componentType
54
+ });
55
+
56
+ marko_template.meta = {
57
+ id: "/@parameter1/base-cms-marko-web$3.11.0/components/page/layouts/default.marko",
58
+ tags: [
59
+ "../metadata/default.marko"
60
+ ]
61
+ };
@@ -0,0 +1,78 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/src/html").t(__filename),
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$3.11.0/components/page/layouts/website-section.marko",
6
+ marko_renderer = require("marko/src/runtime/components/renderer"),
7
+ module_baseCmsObjectPath_module = require("@parameter1/base-cms-object-path"),
8
+ baseCmsObjectPath_module = module_baseCmsObjectPath_module.default || module_baseCmsObjectPath_module,
9
+ get = module_baseCmsObjectPath_module.get,
10
+ getAsObject = module_baseCmsObjectPath_module.getAsObject,
11
+ marko_web_website_section_page_metadata_template = require("../metadata/website-section.marko"),
12
+ marko_loadTag = require("marko/src/runtime/helpers/load-tag"),
13
+ marko_web_website_section_page_metadata_tag = marko_loadTag(marko_web_website_section_page_metadata_template),
14
+ marko_web_website_section_rss_template = require("../../rss/website-section.marko"),
15
+ marko_web_website_section_rss_tag = marko_loadTag(marko_web_website_section_rss_template),
16
+ marko_dynamicTag = require("marko/src/runtime/helpers/dynamic-tag");
17
+
18
+ function render(input, out, __component, component, state) {
19
+ var data = input;
20
+
21
+ const { id, alias, name } = input;
22
+
23
+ const { document } = out.global;
24
+
25
+ const withRss = input.withRss != null ? input.withRss : true;
26
+
27
+ marko_dynamicTag(out, document, function() {
28
+ return {
29
+ "above-container": input.aboveContainer,
30
+ "below-container": input.belowContainer,
31
+ foot: input.foot,
32
+ head: {
33
+ renderBody: function(out) {
34
+ marko_web_website_section_page_metadata_tag({
35
+ alias: alias
36
+ }, out, __component, "2");
37
+
38
+ if (withRss) {
39
+ marko_web_website_section_rss_tag({
40
+ queryName: "website-scheduled-content",
41
+ queryParams: {
42
+ sectionAlias: alias
43
+ },
44
+ name: name
45
+ }, out, __component, "3");
46
+ }
47
+
48
+ marko_dynamicTag(out, input.head, null, null, null, null, __component, "4");
49
+ }
50
+ },
51
+ container: {
52
+ abovePage: input.abovePage,
53
+ belowPage: input.belowPage,
54
+ page: {
55
+ for: "website-section",
56
+ id: id,
57
+ attrs: input.attrs,
58
+ renderBody: function(out) {
59
+ marko_dynamicTag(out, input.page, null, null, null, null, __component, "7");
60
+ }
61
+ }
62
+ }
63
+ };
64
+ }, null, null, null, __component, "0");
65
+ }
66
+
67
+ marko_template._ = marko_renderer(render, {
68
+ ___implicit: true,
69
+ ___type: marko_componentType
70
+ });
71
+
72
+ marko_template.meta = {
73
+ id: "/@parameter1/base-cms-marko-web$3.11.0/components/page/layouts/website-section.marko",
74
+ tags: [
75
+ "../metadata/website-section.marko",
76
+ "../../rss/website-section.marko"
77
+ ]
78
+ };
@@ -0,0 +1,108 @@
1
+ // Compiled using marko@4.20.2 - DO NOT EDIT
2
+ "use strict";
3
+
4
+ var marko_template = module.exports = require("marko/src/html").t(__filename),
5
+ marko_componentType = "/@parameter1/base-cms-marko-web$3.11.0/components/page/metadata/components/common.marko",
6
+ marko_component = require("./common.marko"),
7
+ marko_renderer = require("marko/src/runtime/components/renderer"),
8
+ marko_web_page_title_template = require("../../title.marko"),
9
+ marko_loadTag = require("marko/src/runtime/helpers/load-tag"),
10
+ marko_web_page_title_tag = marko_loadTag(marko_web_page_title_template),
11
+ marko_web_page_description_template = require("../../description.marko"),
12
+ marko_web_page_description_tag = marko_loadTag(marko_web_page_description_template),
13
+ marko_web_page_rel_canonical_template = require("../../rel-canonical.marko"),
14
+ marko_web_page_rel_canonical_tag = marko_loadTag(marko_web_page_rel_canonical_template),
15
+ marko_attr = require("marko/src/runtime/html/helpers/attr");
16
+
17
+ function render(input, out, __component, component, state) {
18
+ var data = input;
19
+
20
+ const { config } = out.global;
21
+
22
+ const {
23
+ title,
24
+ canonicalPath,
25
+ canonicalUrl,
26
+ imageSrc,
27
+ description,
28
+ noIndex,
29
+ } = input;
30
+
31
+ const fallbackImage = config.fallbackImage();
32
+
33
+ const image = imageSrc || fallbackImage;
34
+
35
+ marko_web_page_title_tag({
36
+ concatWith: "|",
37
+ value: title
38
+ }, out, __component, "0");
39
+
40
+ marko_web_page_description_tag({
41
+ value: description
42
+ }, out, __component, "1");
43
+
44
+ marko_web_page_rel_canonical_tag({
45
+ path: canonicalPath,
46
+ url: canonicalUrl
47
+ }, out, __component, "2");
48
+
49
+ if (noIndex) {
50
+ out.w("<meta name=\"robots\" content=\"noindex\">");
51
+ }
52
+
53
+ if (title) {
54
+ out.w("<meta property=\"og:title\" item-prop=\"name\"" +
55
+ marko_attr("content", title) +
56
+ ">");
57
+ }
58
+
59
+ if (image) {
60
+ out.w("<meta name=\"image\" property=\"og:image\" item-prop=\"image\"" +
61
+ marko_attr("content", image) +
62
+ ">");
63
+ }
64
+
65
+ marko_web_page_rel_canonical_tag({
66
+ path: canonicalPath,
67
+ url: canonicalUrl,
68
+ renderBody: function(out, { href }) {
69
+ out.w("<meta property=\"og:url\"" +
70
+ marko_attr("content", href) +
71
+ ">");
72
+ }
73
+ }, out, __component, "6");
74
+
75
+ out.w("<meta property=\"og:site_name\"" +
76
+ marko_attr("content", config.website("name")) +
77
+ "><meta property=\"og:locale\"" +
78
+ marko_attr("content", config.website("language.primaryCode")) +
79
+ "><meta name=\"twitter:card\" content=\"summary_large_image\"><meta name=\"twitter:title\"" +
80
+ marko_attr("content", title) +
81
+ ">");
82
+
83
+ if (description) {
84
+ out.w("<meta name=\"twitter:description\"" +
85
+ marko_attr("content", description) +
86
+ ">");
87
+ }
88
+
89
+ if (image) {
90
+ out.w("<meta name=\"twitter:image\"" +
91
+ marko_attr("content", image) +
92
+ ">");
93
+ }
94
+ }
95
+
96
+ marko_template._ = marko_renderer(render, {
97
+ ___type: marko_componentType
98
+ }, marko_component);
99
+
100
+ marko_template.meta = {
101
+ id: "/@parameter1/base-cms-marko-web$3.11.0/components/page/metadata/components/common.marko",
102
+ component: "./common.marko",
103
+ tags: [
104
+ "../../title.marko",
105
+ "../../description.marko",
106
+ "../../rel-canonical.marko"
107
+ ]
108
+ };