From 41432f0f9da820a97aff2740f72a20f5c7b8fef6 Mon Sep 17 00:00:00 2001 From: PerficientDave Date: Tue, 14 May 2024 12:41:38 -0400 Subject: [PATCH 1/4] Adding a TestimonialList component --- .../components/List Components/PeopleGrid.tsx | 2 +- .../List Components/TestimonialList.tsx | 73 +++++++++++++++++++ 2 files changed, 74 insertions(+), 1 deletion(-) create mode 100644 src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx diff --git a/src/Project/Sugcon2024/Sugcon/src/components/List Components/PeopleGrid.tsx b/src/Project/Sugcon2024/Sugcon/src/components/List Components/PeopleGrid.tsx index 415bb5d0..8f27df06 100644 --- a/src/Project/Sugcon2024/Sugcon/src/components/List Components/PeopleGrid.tsx +++ b/src/Project/Sugcon2024/Sugcon/src/components/List Components/PeopleGrid.tsx @@ -15,7 +15,7 @@ interface Fields { } // Define the type of props for an Person -interface Person { +export interface Person { /** Display name of the person item */ displayName: string; diff --git a/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx b/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx new file mode 100644 index 00000000..6bfe2645 --- /dev/null +++ b/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx @@ -0,0 +1,73 @@ +import React from 'react'; +import { Box } from '@chakra-ui/react'; +// import { Text as JssText } from '@sitecore-jss/sitecore-jss-nextjs'; +import { Person } from './PeopleGrid'; +import clsx from 'clsx'; +// import { LayoutFlex } from 'components/Templates/LayoutFlex'; + +// Define the type of props that Testimonial List will accept +interface Fields { + /** Testimonial */ + Testimonials: Array; +} + +// Define the type of props for an Person +interface Testimonial { + displayName: string; + + fields: { + Person: Person; + Testimonial: { + value: string; + }; + }; + + /** The item id of the testimonial item */ + id: string; + + /** Name of the person item */ + name: string; + + /** Url of the person item */ + url: string; +} + +export type TestimonialListProps = { + params: { [key: string]: string }; + fields: Fields; +}; + +export const Default = (props: TestimonialListProps): JSX.Element => { + // const cols = props.params && props.params.Columns ? parseInt(props.params.Columns) : 4; + + console.log(props); + + return ( + + {props.fields.Testimonials.map((testimonial) => ( + + +

{testimonial.fields.Testimonial.value}

+ +

{testimonial.fields.Person.fields.Name.value}

+

{testimonial.fields.Person.fields.JobRole.value}

+
+
+ ))} +
+ ); +}; From 134e4f83c5e8924a6a06aab6436b38fc6356a346 Mon Sep 17 00:00:00 2001 From: PerficientDave Date: Tue, 18 Jun 2024 08:16:36 -0400 Subject: [PATCH 2/4] Updates for Testimonial List --- .../List Components/TestimonialList.tsx | 92 ++++++++++++------- 1 file changed, 57 insertions(+), 35 deletions(-) diff --git a/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx b/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx index 6bfe2645..0bfc3f26 100644 --- a/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx +++ b/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx @@ -1,9 +1,7 @@ import React from 'react'; -import { Box } from '@chakra-ui/react'; -// import { Text as JssText } from '@sitecore-jss/sitecore-jss-nextjs'; -import { Person } from './PeopleGrid'; +import { Box, Flex, Text, Image, Heading } from '@chakra-ui/react'; import clsx from 'clsx'; -// import { LayoutFlex } from 'components/Templates/LayoutFlex'; +import { LayoutFlex } from 'components/Templates/LayoutFlex'; // Define the type of props that Testimonial List will accept interface Fields { @@ -11,15 +9,25 @@ interface Fields { Testimonials: Array; } -// Define the type of props for an Person +// Define the type of props for a Person interface Testimonial { displayName: string; fields: { - Person: Person; Testimonial: { value: string; }; + Name: { + value: string; + }; + Role: { + value: string; + }; + Image: { + value: { + src: string; + }; + }; }; /** The item id of the testimonial item */ @@ -38,36 +46,50 @@ export type TestimonialListProps = { }; export const Default = (props: TestimonialListProps): JSX.Element => { - // const cols = props.params && props.params.Columns ? parseInt(props.params.Columns) : 4; - - console.log(props); - return ( - - {props.fields.Testimonials.map((testimonial) => ( - - -

{testimonial.fields.Testimonial.value}

- -

{testimonial.fields.Person.fields.Name.value}

-

{testimonial.fields.Person.fields.JobRole.value}

+ + + What people say + + + {props.fields.Testimonials.map((testimonial) => ( + + + {testimonial.fields.Name.value} + + + {testimonial.fields.Name.value}, + + + {testimonial.fields.Role.value} + + + + + “{testimonial.fields.Testimonial.value}” + -
- ))} -
+ ))} + + ); }; From c8f0448ab60f5c77c75f908c2400b9679d112ad7 Mon Sep 17 00:00:00 2001 From: PerficientDave Date: Mon, 24 Jun 2024 08:26:12 -0400 Subject: [PATCH 3/4] Adjusting layout for Testimonial List --- .../src/components/List Components/TestimonialList.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx b/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx index 0bfc3f26..101639f0 100644 --- a/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx +++ b/src/Project/Sugcon2024/Sugcon/src/components/List Components/TestimonialList.tsx @@ -54,7 +54,12 @@ export const Default = (props: TestimonialListProps): JSX.Element => { What people say - + {props.fields.Testimonials.map((testimonial) => ( { flexDirection="column" alignItems="flex-start" maxW="sm" - mx="auto" > Date: Mon, 24 Jun 2024 09:01:11 -0400 Subject: [PATCH 4/4] YML to support Testimonal List --- .../_name.yml | 10 +- .../List Components/Testimonial List.yml | 145 ++++++++++++++++++ .../Rendering Parameters/Testimonials.yml | 131 ++++++++++++++++ .../Testimonials/Layout.yml | 31 ++++ .../Testimonials/Layout/Alphabetize.yml | 42 +++++ .../Testimonials/Layout/Columns.yml | 38 +++++ .../Layout/DisplaySocialLinks.yml | 42 +++++ .../Testimonials/Layout/LinkToBio.yml | 42 +++++ .../Testimonials/__Standard Values.yml | 5 + .../List Components/Testimonial Folder.yml | 41 +++++ .../Testimonial Folder/__Standard Values.yml | 37 +++++ .../Testimonial List Folder.yml | 41 +++++ .../__Standard Values.yml | 37 +++++ .../List Components/Testimonial List.yml | 133 ++++++++++++++++ .../Testimonial List/Content.yml | 118 ++++++++++++++ .../Testimonial List/Content/Testimonials.yml | 42 +++++ .../List Components/Testimonial.yml | 133 ++++++++++++++++ .../List Components/Testimonial/Content.yml | 118 ++++++++++++++ .../Testimonial/Content/Image.yml | 38 +++++ .../Testimonial/Content/Name.yml | 139 +++++++++++++++++ .../Testimonial/Content/Role.yml | 38 +++++ .../Testimonial/Content/Testimonial.yml | 38 +++++ 22 files changed, 1435 insertions(+), 4 deletions(-) create mode 100644 src/Project/Sugcon2024/items/Renderings/Sugcon2024/List Components/Testimonial List.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/Alphabetize.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/Columns.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/DisplaySocialLinks.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/LinkToBio.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/__Standard Values.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial Folder.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial Folder/__Standard Values.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List Folder.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List Folder/__Standard Values.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List/Content.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List/Content/Testimonials.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Image.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Name.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Role.yml create mode 100644 src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Testimonial.yml diff --git a/src/Project/Sugcon2024/items/Branches/Sugcon2024/List Components/Available Headless List Components Renderings/_name.yml b/src/Project/Sugcon2024/items/Branches/Sugcon2024/List Components/Available Headless List Components Renderings/_name.yml index ca33124c..d5033320 100644 --- a/src/Project/Sugcon2024/items/Branches/Sugcon2024/List Components/Available Headless List Components Renderings/_name.yml +++ b/src/Project/Sugcon2024/items/Branches/Sugcon2024/List Components/Available Headless List Components Renderings/_name.yml @@ -6,7 +6,9 @@ Path: /sitecore/templates/Branches/Project/Sugcon2024/List Components/Available SharedFields: - ID: "715ae6c0-71c8-4744-ab4f-65362d20ad65" Hint: Renderings - Value: "{53331DB4-9E80-4727-B7A6-2617BEA59142}" + Value: | + {53331DB4-9E80-4727-B7A6-2617BEA59142} + {B1BA2D1B-00EC-4A50-B317-45021D92F192} Languages: - Language: en Versions: @@ -21,11 +23,11 @@ Languages: sitecore\admin - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" Hint: __Revision - Value: "6d01552e-a731-4168-9675-8c0f7c0e5419" + Value: "7a92c2f3-a17e-4423-bd64-585915060941" - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" Hint: __Updated by Value: | - sitecore\UOUBIWQRx7 + sitecore\B8tFS9iKgv - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" Hint: __Updated - Value: 20240213T195425Z + Value: 20240514T014533Z diff --git a/src/Project/Sugcon2024/items/Renderings/Sugcon2024/List Components/Testimonial List.yml b/src/Project/Sugcon2024/items/Renderings/Sugcon2024/List Components/Testimonial List.yml new file mode 100644 index 00000000..ca691ec8 --- /dev/null +++ b/src/Project/Sugcon2024/items/Renderings/Sugcon2024/List Components/Testimonial List.yml @@ -0,0 +1,145 @@ +--- +ID: "b1ba2d1b-00ec-4a50-b317-45021d92f192" +Parent: "5df94a9a-5713-4c62-930f-6670e83dba1d" +Template: "04646a89-996f-4ee7-878a-ffdbf1f0ef0d" +Path: /sitecore/layout/Renderings/Project/Sugcon2024/List Components/Testimonial List +SharedFields: +- ID: "037fe404-dd19-4bf7-8e30-4dadf68b27b0" + Hint: componentName + Value: TestimonialList +- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" + Hint: __Icon + Value: Office/32x32/users_crowd.png +- ID: "1a7c85e5-dc0b-490d-9187-bb1dbcb4c72f" + Hint: Datasource Template + Value: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial List +- ID: "7d8ae35f-9ed1-43b5-96a2-0a5f040d4e4e" + Hint: Open Properties after Add + Value: 0 +- ID: "9c6106ea-7a5a-48e2-8cad-f0f693b1e2d4" + Hint: __Read Only + Value: 0 +- ID: "a77e8568-1ab3-44f1-a664-b7c37ec7810d" + Hint: Parameters Template + Value: "{DE21B31C-2580-43F2-935E-B84CB9344410}" +- ID: "b0b15510-b138-470e-8f33-8da2e228aafe" + Hint: Rendering Contents Resolver + Value: +- ID: "b5b27af1-25ef-405c-87ce-369b3a004016" + Hint: Datasource Location + Value: "query:$site/*[@@name='Data']/*[@@templatename='Testimonials Folder']|query:$sharedSites/*[@@name='Data']/*[@@templatename='Testimonials Folder']" +- ID: "c39a90ce-0035-41bb-90f6-3c8a6ea87797" + Hint: AddFieldEditorButton + Value: 1 +- ID: "e829c217-5e94-4306-9c48-2634b094fdc2" + Hint: OtherProperties + Value: IsRenderingsWithDynamicPlaceholders=true +Languages: +- Language: "de-DE" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: Promo + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20211012T120931Z + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\JssImport + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "339eccbe-7a29-47f1-a9ba-ec106e509598" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240514T021901Z +- Language: "ja-JP" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: プロモ + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: "zh-CN" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: 促销 + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials.yml new file mode 100644 index 00000000..c9fcbb38 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials.yml @@ -0,0 +1,131 @@ +--- +ID: "de21b31c-2580-43f2-935e-b84cb9344410" +Parent: "6f00620c-3913-4c6c-a243-f5b7bddec442" +Template: "ab86861a-6030-46c5-b394-e8f99e8b87db" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Rendering Parameters/Testimonials +SharedFields: +- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" + Hint: __Icon + Value: office/32x32/users_crowd.png +- ID: "12c33f3f-86c5-43a5-aeb4-5598cec45116" + Hint: __Base template + Value: | + {4247AAD4-EBDE-4994-998F-E067A51B1FE4} + {5C74E985-E055-43FF-B28C-DB6C6A6450A2} + {44A022DB-56D3-419A-B43B-E27E4D8E9C41} + {3DB3EB10-F8D0-4CC9-BE26-18CE7B139EC8} +- ID: "9c6106ea-7a5a-48e2-8cad-f0f693b1e2d4" + Hint: __Read Only + Value: 0 +- ID: "f7d48a55-2158-4f02-9356-756654404f73" + Hint: __Standard values + Value: "{DC29DFD3-A06C-4096-9FCD-4AFE7A08D514}" +Languages: +- Language: "de-DE" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: Promo + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20211012T120926Z + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\JssImport + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "59392f67-56d5-4252-8ece-bc16f273b498" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240514T014532Z +- Language: "ja-JP" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: プロモ + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: "zh-CN" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: 促销 + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout.yml new file mode 100644 index 00000000..2e0cd994 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout.yml @@ -0,0 +1,31 @@ +--- +ID: "d2bc2ce7-085e-46c9-a2ec-fe7a09b0e5b6" +Parent: "de21b31c-2580-43f2-935e-b84cb9344410" +Template: "e269fbb5-3750-427a-9149-7aa950b49301" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout +Languages: +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240213T195943Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\UOUBIWQRx7 + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\UOUBIWQRx7 + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "faec0d45-59d3-4e42-8523-2c996daa387d" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\UOUBIWQRx7 + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240213T203331Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/Alphabetize.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/Alphabetize.yml new file mode 100644 index 00000000..91974a32 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/Alphabetize.yml @@ -0,0 +1,42 @@ +--- +ID: "a09ddcd1-0b48-4eea-af94-f468dea39a20" +Parent: "d2bc2ce7-085e-46c9-a2ec-fe7a09b0e5b6" +Template: "455a3e98-a627-4b40-8035-e683a0331ac7" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/Alphabetize +SharedFields: +- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" + Hint: Type + Value: Checkbox +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 150 +Languages: +- Language: en + Fields: + - ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" + Hint: Title + Value: "Alphabetize?" + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240219T215142Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\UOUBIWQRx7 + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\UOUBIWQRx7 + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "ccdcc79e-57e7-410d-b4f8-5ae7bcdefeb9" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\UOUBIWQRx7 + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240219T215601Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/Columns.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/Columns.yml new file mode 100644 index 00000000..d4d2f84b --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/Columns.yml @@ -0,0 +1,38 @@ +--- +ID: "3dca0c68-bbbe-4d95-af7a-d019c5ee4c24" +Parent: "d2bc2ce7-085e-46c9-a2ec-fe7a09b0e5b6" +Template: "455a3e98-a627-4b40-8035-e683a0331ac7" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/Columns +SharedFields: +- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" + Hint: Type + Value: Integer +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 100 +Languages: +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240213T195943Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\UOUBIWQRx7 + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\UOUBIWQRx7 + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "ba127e60-900b-48d4-b0a7-02eb7ebd37a7" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\UOUBIWQRx7 + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240213T203331Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/DisplaySocialLinks.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/DisplaySocialLinks.yml new file mode 100644 index 00000000..77ae4ae3 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/DisplaySocialLinks.yml @@ -0,0 +1,42 @@ +--- +ID: "e5d432b7-92b0-4fe0-b019-991a455192eb" +Parent: "d2bc2ce7-085e-46c9-a2ec-fe7a09b0e5b6" +Template: "455a3e98-a627-4b40-8035-e683a0331ac7" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/DisplaySocialLinks +SharedFields: +- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" + Hint: Type + Value: Checkbox +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 200 +Languages: +- Language: en + Fields: + - ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" + Hint: Title + Value: "Display Social Links?" + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240213T203331Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\UOUBIWQRx7 + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\UOUBIWQRx7 + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "02ede677-9a54-4eac-a60a-4421e30bf7bb" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\UOUBIWQRx7 + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240213T203357Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/LinkToBio.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/LinkToBio.yml new file mode 100644 index 00000000..52be969d --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/LinkToBio.yml @@ -0,0 +1,42 @@ +--- +ID: "bd8faf9d-abd7-4873-8406-1ebf0a74004c" +Parent: "d2bc2ce7-085e-46c9-a2ec-fe7a09b0e5b6" +Template: "455a3e98-a627-4b40-8035-e683a0331ac7" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Rendering Parameters/Testimonials/Layout/LinkToBio +SharedFields: +- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" + Hint: Type + Value: Checkbox +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 175 +Languages: +- Language: en + Fields: + - ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" + Hint: Title + Value: "Link To Bio?" + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240213T203331Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\UOUBIWQRx7 + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\UOUBIWQRx7 + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "53a874e7-f4be-4642-8c44-0743b6d6fe7e" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\UOUBIWQRx7 + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240219T215608Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/__Standard Values.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/__Standard Values.yml new file mode 100644 index 00000000..d18fc862 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Rendering Parameters/Testimonials/__Standard Values.yml @@ -0,0 +1,5 @@ +--- +ID: "dc29dfd3-a06c-4096-9fcd-4afe7a08d514" +Parent: "de21b31c-2580-43f2-935e-b84cb9344410" +Template: "de21b31c-2580-43f2-935e-b84cb9344410" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Rendering Parameters/Testimonials/__Standard Values diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial Folder.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial Folder.yml new file mode 100644 index 00000000..cf6436de --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial Folder.yml @@ -0,0 +1,41 @@ +--- +ID: "8dba1d0e-00bf-4bfc-8b6c-1d54c9b26469" +Parent: "4fd955c6-74be-4326-8f77-89e631d5a8f0" +Template: "ab86861a-6030-46c5-b394-e8f99e8b87db" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial Folder +SharedFields: +- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" + Hint: __Icon + Value: Applications/32x32/folder_cubes.png +- ID: "12c33f3f-86c5-43a5-aeb4-5598cec45116" + Hint: __Base template + Value: "{1930BBEB-7805-471A-A3BE-4858AC7CF696}" +- ID: "f7d48a55-2158-4f02-9356-756654404f73" + Hint: __Standard values + Value: "{1EE92FB2-AC0E-4C72-8C32-8A328663621E}" +Languages: +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240312T171519Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\x3rLvWVVyq + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\x3rLvWVVyq + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "fe881b0e-0bff-4223-925f-d7603b5f630b" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240514T020354Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial Folder/__Standard Values.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial Folder/__Standard Values.yml new file mode 100644 index 00000000..b44ad1c7 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial Folder/__Standard Values.yml @@ -0,0 +1,37 @@ +--- +ID: "1ee92fb2-ac0e-4c72-8c32-8a328663621e" +Parent: "8dba1d0e-00bf-4bfc-8b6c-1d54c9b26469" +Template: "8dba1d0e-00bf-4bfc-8b6c-1d54c9b26469" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial Folder/__Standard Values +SharedFields: +- ID: "1172f251-dad4-4efb-a329-0c63500e4f1e" + Hint: __Masters + Value: | + {8DBA1D0E-00BF-4BFC-8B6C-1D54C9B26469} + {F502DE24-D44E-426C-8382-7F9D4D7218EA} +Languages: +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240312T171527Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\x3rLvWVVyq + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\x3rLvWVVyq + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "a4922faf-b915-4204-8073-c9feaa14ae1c" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240514T020418Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List Folder.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List Folder.yml new file mode 100644 index 00000000..a932276a --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List Folder.yml @@ -0,0 +1,41 @@ +--- +ID: "79fe6b5a-e1c3-49f4-8962-e5d257e5b228" +Parent: "4fd955c6-74be-4326-8f77-89e631d5a8f0" +Template: "ab86861a-6030-46c5-b394-e8f99e8b87db" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial List Folder +SharedFields: +- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" + Hint: __Icon + Value: Applications/32x32/folder_cubes.png +- ID: "12c33f3f-86c5-43a5-aeb4-5598cec45116" + Hint: __Base template + Value: "{1930BBEB-7805-471A-A3BE-4858AC7CF696}" +- ID: "f7d48a55-2158-4f02-9356-756654404f73" + Hint: __Standard values + Value: "{B2964F3E-9B68-4AC0-88C0-026A658F4E34}" +Languages: +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240312T171519Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\x3rLvWVVyq + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\x3rLvWVVyq + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "8f6aab13-c6f5-4dfa-9c00-fc7b97484893" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240514T015943Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List Folder/__Standard Values.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List Folder/__Standard Values.yml new file mode 100644 index 00000000..7a2baf20 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List Folder/__Standard Values.yml @@ -0,0 +1,37 @@ +--- +ID: "b2964f3e-9b68-4ac0-88c0-026a658f4e34" +Parent: "79fe6b5a-e1c3-49f4-8962-e5d257e5b228" +Template: "79fe6b5a-e1c3-49f4-8962-e5d257e5b228" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial List Folder/__Standard Values +SharedFields: +- ID: "1172f251-dad4-4efb-a329-0c63500e4f1e" + Hint: __Masters + Value: | + {658FAA26-7D15-45D5-BFD5-E4B2457AC566} + {79FE6B5A-E1C3-49F4-8962-E5D257E5B228} +Languages: +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240312T171527Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\x3rLvWVVyq + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\x3rLvWVVyq + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "84511051-a48a-4500-97b8-9c951256b095" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240514T014533Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List.yml new file mode 100644 index 00000000..a0edabf8 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List.yml @@ -0,0 +1,133 @@ +--- +ID: "658faa26-7d15-45d5-bfd5-e4b2457ac566" +Parent: "4fd955c6-74be-4326-8f77-89e631d5a8f0" +Template: "ab86861a-6030-46c5-b394-e8f99e8b87db" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial List +SharedFields: +- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" + Hint: __Icon + Value: office/32x32/users_crowd.png +- ID: "12c33f3f-86c5-43a5-aeb4-5598cec45116" + Hint: __Base template + Value: | + {1930BBEB-7805-471A-A3BE-4858AC7CF696} + {44A022DB-56D3-419A-B43B-E27E4D8E9C41} +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 100 +- ID: "f7d48a55-2158-4f02-9356-756654404f73" + Hint: __Standard values + Value: +Languages: +- Language: "de-DE" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: Promo + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: en + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20111213T133000Z + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "6b8bf750-69c0-45e0-b30c-1e2b038d12fa" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240514T020138Z +- Language: "ja-JP" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: プロモ + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: "zh-CN" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: 促销 + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List/Content.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List/Content.yml new file mode 100644 index 00000000..22721318 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List/Content.yml @@ -0,0 +1,118 @@ +--- +ID: "5de0ed99-4d94-42eb-a76d-39c60007a56c" +Parent: "658faa26-7d15-45d5-bfd5-e4b2457ac566" +Template: "e269fbb5-3750-427a-9149-7aa950b49301" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial List/Content +SharedFields: +- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" + Hint: __Icon + Value: Office/32x32/window_dialog.png +Languages: +- Language: "de-DE" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: Promo + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20111213T143500 + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "31df8ace-86b9-4ba6-a0e6-cd85d7064ced" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240514T020840Z +- Language: "ja-JP" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: プロモ + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: "zh-CN" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: 促销 + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List/Content/Testimonials.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List/Content/Testimonials.yml new file mode 100644 index 00000000..8ed677e5 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial List/Content/Testimonials.yml @@ -0,0 +1,42 @@ +--- +ID: "2bb53a94-9baa-4898-8a4d-e9ed6d143259" +Parent: "5de0ed99-4d94-42eb-a76d-39c60007a56c" +Template: "455a3e98-a627-4b40-8035-e683a0331ac7" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial List/Content/Testimonials +SharedFields: +- ID: "1eb8ae32-e190-44a6-968d-ed904c794ebf" + Hint: Source + Value: | + query:$site//*[@@tid="{F502DE24-D44E-426C-8382-7F9D4D7218EA}"] +- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" + Hint: Type + Value: Multilist +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 900 +Languages: +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240206T195557Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\UOUBIWQRx7 + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\UOUBIWQRx7 + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "6f939ff4-ac2d-411b-ae07-ded529510b35" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240514T020840Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial.yml new file mode 100644 index 00000000..e90e6cab --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial.yml @@ -0,0 +1,133 @@ +--- +ID: "f502de24-d44e-426c-8382-7f9d4d7218ea" +Parent: "4fd955c6-74be-4326-8f77-89e631d5a8f0" +Template: "ab86861a-6030-46c5-b394-e8f99e8b87db" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial +SharedFields: +- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" + Hint: __Icon + Value: office/32x32/users_crowd.png +- ID: "12c33f3f-86c5-43a5-aeb4-5598cec45116" + Hint: __Base template + Value: | + {1930BBEB-7805-471A-A3BE-4858AC7CF696} + {44A022DB-56D3-419A-B43B-E27E4D8E9C41} +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 100 +- ID: "f7d48a55-2158-4f02-9356-756654404f73" + Hint: __Standard values + Value: +Languages: +- Language: "de-DE" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: Promo + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: en + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20111213T133000Z + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "e23c2f94-9740-4c40-b372-031e7feba790" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240514T020116Z +- Language: "ja-JP" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: プロモ + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: "zh-CN" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: 促销 + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content.yml new file mode 100644 index 00000000..bd2d8d7c --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content.yml @@ -0,0 +1,118 @@ +--- +ID: "73c26cc9-ba0a-450b-abee-a4bdd96f6835" +Parent: "f502de24-d44e-426c-8382-7f9d4d7218ea" +Template: "e269fbb5-3750-427a-9149-7aa950b49301" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial/Content +SharedFields: +- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" + Hint: __Icon + Value: Office/32x32/window_dialog.png +Languages: +- Language: "de-DE" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: Promo + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20111213T143500 + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "6b26e8e4-cc37-4a16-bb45-b1993ebda251" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240617T230120Z +- Language: "ja-JP" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: プロモ + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: "zh-CN" + Fields: + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: 促销 + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Image.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Image.yml new file mode 100644 index 00000000..4f0fe6a6 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Image.yml @@ -0,0 +1,38 @@ +--- +ID: "63934b87-a1bf-46e1-9e6a-3cb59a6cb3b5" +Parent: "73c26cc9-ba0a-450b-abee-a4bdd96f6835" +Template: "455a3e98-a627-4b40-8035-e683a0331ac7" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial/Content/Image +SharedFields: +- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" + Hint: Type + Value: Image +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 1200 +Languages: +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240617T225901Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\B8tFS9iKgv + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\B8tFS9iKgv + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "8ed32c22-4706-4ca5-9e6d-1fbe1c7f586a" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240617T230120Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Name.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Name.yml new file mode 100644 index 00000000..9f45ef51 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Name.yml @@ -0,0 +1,139 @@ +--- +ID: "b78049a6-6d0e-48e6-a603-6fceeb5713a0" +Parent: "73c26cc9-ba0a-450b-abee-a4bdd96f6835" +Template: "455a3e98-a627-4b40-8035-e683a0331ac7" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial/Content/Name +SharedFields: +- ID: "1eb8ae32-e190-44a6-968d-ed904c794ebf" + Hint: Source + Value: +- ID: "24cb32f0-e364-4f37-b400-0f2899097b5b" + Hint: Enable Shared Language Fallback + Value: 1 +- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" + Hint: Type + Value: "Single-Line Text" +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 100 +Languages: +- Language: "de-DE" + Fields: + - ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" + Hint: Title + Value: Text + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: PromoText + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: en + Fields: + - ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" + Hint: Title + Value: Name + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20111213T143500 + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "2bfb5413-7b28-4f3a-8a3d-d91ed8fc5f68" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240617T230150Z + - ID: "fa622538-0c13-4130-a001-45984241aa00" + Hint: Enable Language Fallback + Value: 1 +- Language: "ja-JP" + Fields: + - ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" + Hint: Title + Value: テキスト + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: プロモ テキスト + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z +- Language: "zh-CN" + Fields: + - ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" + Hint: Title + Value: 文本 + - ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" + Hint: __Display name + Value: 促销文字 + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240125T152634Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\Admin + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\Admin + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "c5100b7f-97cb-4d5a-9601-9d07dafe7323" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\Admin + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240125T152634Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Role.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Role.yml new file mode 100644 index 00000000..1057c0b3 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Role.yml @@ -0,0 +1,38 @@ +--- +ID: "ecd1a977-f038-4d37-b982-2420a984f4d9" +Parent: "73c26cc9-ba0a-450b-abee-a4bdd96f6835" +Template: "455a3e98-a627-4b40-8035-e683a0331ac7" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial/Content/Role +SharedFields: +- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" + Hint: Type + Value: "Single-Line Text" +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 1000 +Languages: +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240617T225901Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\B8tFS9iKgv + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\B8tFS9iKgv + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "f540942e-f8ec-4bcb-aa36-017c05253b2e" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240617T230120Z diff --git a/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Testimonial.yml b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Testimonial.yml new file mode 100644 index 00000000..429932b4 --- /dev/null +++ b/src/Project/Sugcon2024/items/Templates/Sugcon2024/List Components/Testimonial/Content/Testimonial.yml @@ -0,0 +1,38 @@ +--- +ID: "ab872511-d3c4-42ed-8d7e-e3c7c37d29fa" +Parent: "73c26cc9-ba0a-450b-abee-a4bdd96f6835" +Template: "455a3e98-a627-4b40-8035-e683a0331ac7" +Path: /sitecore/templates/Project/Sugcon2024/List Components/Testimonial/Content/Testimonial +SharedFields: +- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" + Hint: Type + Value: "Single-Line Text" +- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" + Hint: __Sortorder + Value: 1100 +Languages: +- Language: en + Versions: + - Version: 1 + Fields: + - ID: "25bed78c-4957-4165-998a-ca1b52f67497" + Hint: __Created + Value: 20240617T225901Z + - ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" + Hint: __Owner + Value: | + sitecore\B8tFS9iKgv + - ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" + Hint: __Created by + Value: | + sitecore\B8tFS9iKgv + - ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" + Hint: __Revision + Value: "b1f2de63-23a8-43c1-8b89-303817baef85" + - ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" + Hint: __Updated by + Value: | + sitecore\B8tFS9iKgv + - ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" + Hint: __Updated + Value: 20240617T230120Z