-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #339 from ericsanner/feature/35-event-teaser
Create Event and Event Teaser Components
Showing
26 changed files
with
2,298 additions
and
57 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 81 additions & 0 deletions
81
src/Project/Sugcon2024/Sugcon/src/components/Basic Components/Event.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
import React from 'react'; | ||
import { Box, Heading, Text, Image, Link } from '@chakra-ui/react'; | ||
import { Field, ImageField, LinkField } from '@sitecore-jss/sitecore-jss-nextjs'; | ||
|
||
// Define the type of props that Event will accept | ||
export interface Fields { | ||
/** URL for the event logo */ | ||
Image: ImageField; | ||
|
||
/** Name of the event */ | ||
EventName: Field<string>; | ||
|
||
/** Date of the event */ | ||
EventDate: Field<string>; | ||
|
||
/** City of the event */ | ||
EventCity: Field<string>; | ||
|
||
/** State of the event */ | ||
EventState: Field<string>; | ||
|
||
/** Country of the event */ | ||
EventCountry: Field<string>; | ||
|
||
/** Link to event website */ | ||
LinkToSite: LinkField; | ||
} | ||
|
||
export const Default = (props: Fields): JSX.Element => { | ||
const dateString: string = | ||
props.EventDate?.value !== '0001-01-01T00:00:00Z' | ||
? new Date(props.EventDate?.value).toDateString() | ||
: ''; | ||
|
||
const location: string[] = []; | ||
props.EventCity?.value != '' ? location.push(props.EventCity?.value) : ''; | ||
props.EventState?.value != '' ? location.push(props.EventState?.value) : ''; | ||
props.EventCountry?.value != '' ? location.push(props.EventCountry?.value) : ''; | ||
|
||
const locationString = location.join(', '); | ||
|
||
return ( | ||
<Box w={{ base: '100%', md: '300px' }} mr={{ base: '0', md: '10' }} mb={75}> | ||
<Box px={8} py={4} bg="#F2F2F2" borderRadius="lg" position="relative"> | ||
<Image src={props.Image?.value?.src} maxH={50} /> | ||
<Heading as="h3" size="lg" mt={2}> | ||
{props.EventName?.value} | ||
</Heading> | ||
<Text fontSize="12px" mb={0}> | ||
{dateString} | ||
</Text> | ||
<Text fontSize="12px" mb={0}> | ||
{locationString} | ||
</Text> | ||
{props.LinkToSite?.value?.href !== '' && ( | ||
<Link | ||
href={props.LinkToSite?.value?.href} | ||
isExternal={props.LinkToSite?.value?.target == '_blank'} | ||
fontSize="12px" | ||
mt={3} | ||
textDecoration="underline" | ||
color="#28327D" | ||
> | ||
{props.LinkToSite?.value?.text} | ||
</Link> | ||
)} | ||
<Box | ||
position="absolute" | ||
bottom="-38px" | ||
right="-40px" | ||
w={0} | ||
h={0} | ||
borderStyle="solid" | ||
borderWidth="40px" | ||
borderColor="transparent transparent #F2F2F2 transparent" | ||
transform="rotate(45deg)" | ||
/> | ||
</Box> | ||
</Box> | ||
); | ||
}; |
51 changes: 51 additions & 0 deletions
51
src/Project/Sugcon2024/Sugcon/src/components/Basic Components/EventTeaser.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import React from 'react'; | ||
import { Box, Heading, Flex } from '@chakra-ui/react'; | ||
import { Field } from '@sitecore-jss/sitecore-jss-nextjs'; | ||
import { Fields as EventFields, Default as Event } from './Event'; | ||
|
||
// Define the type of props that Event Teaser will accept | ||
interface Fields { | ||
/** Headline */ | ||
Headline: Field<string>; | ||
|
||
/** Multilist of Events */ | ||
Events: Array<Event>; | ||
} | ||
|
||
// Define the type of props for an Event | ||
interface Event { | ||
/** Display name of the event item */ | ||
displayName: string; | ||
|
||
/** The details of an event */ | ||
fields: EventFields; | ||
|
||
/** The item id of the event item */ | ||
id: string; | ||
|
||
/** Name of the event item */ | ||
name: string; | ||
|
||
/** Url of the event item */ | ||
url: string; | ||
} | ||
|
||
export type EventTeaserProps = { | ||
params: { [key: string]: string }; | ||
fields: Fields; | ||
}; | ||
|
||
export const Default = (props: EventTeaserProps): JSX.Element => { | ||
return ( | ||
<Box w="80%" mx="auto" mt={20}> | ||
<Heading as="h2" size="lg"> | ||
{props.fields?.Headline?.value} | ||
</Heading> | ||
<Flex flexWrap="wrap" mt={10}> | ||
{props.fields?.Events.map((event, idx) => { | ||
return <Event key={idx} {...event.fields}></Event>; | ||
})} | ||
</Flex> | ||
</Box> | ||
); | ||
}; |
184 changes: 184 additions & 0 deletions
184
src/Project/Sugcon2024/Sugcon/src/stories/components/Basic Components/EventTeaser.stories.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
import { Meta, StoryObj } from '@storybook/react'; | ||
import { Default as EventTeaser } from '../../../components/Basic Components/EventTeaser'; | ||
const meta = { | ||
title: 'Components/EventTeaser', | ||
component: EventTeaser, | ||
parameters: { | ||
layout: 'centered', | ||
}, | ||
tags: ['autodocs'], | ||
argTypes: {}, | ||
} satisfies Meta<typeof EventTeaser>; | ||
export default meta; | ||
type Story = StoryObj<typeof meta>; | ||
export const Teaser: Story = { | ||
name: 'Event Teaser', | ||
args: { | ||
params: { | ||
styles: '', | ||
}, | ||
fields: { | ||
Headline: { | ||
value: 'Upcoming Events', | ||
}, | ||
Events: [ | ||
{ | ||
id: 'f3f24e01-ad62-4126-b1f4-de06e8a2ead1', | ||
url: 'http://cm/Data/Events/SUGCON-EU', | ||
name: 'SUGCON EU', | ||
displayName: 'SUGCON EU', | ||
fields: { | ||
EventCity: { | ||
value: 'Philadelphia', | ||
}, | ||
EventCountry: { | ||
value: 'USA', | ||
}, | ||
EventName: { | ||
value: 'SUGCON Europe', | ||
}, | ||
EventDate: { | ||
value: '2024-02-08T05:00:00Z', | ||
}, | ||
LinkToSite: { | ||
value: { | ||
href: 'https://www.sugcon.events/', | ||
text: 'Visit Site', | ||
linktype: 'external', | ||
url: 'https://www.sugcon.events/', | ||
anchor: '', | ||
target: '', | ||
}, | ||
}, | ||
Image: { | ||
value: { | ||
src: '../../../../images/sugcon-eu.svg', | ||
alt: '', | ||
}, | ||
}, | ||
EventState: { | ||
value: 'PA', | ||
}, | ||
}, | ||
}, | ||
{ | ||
id: '7cb5c353-af74-4230-9803-93f1bd41625b', | ||
url: 'http://cm/Data/Events/SUGCON-NA', | ||
name: 'SUGCON NA', | ||
displayName: 'SUGCON NA', | ||
fields: { | ||
EventCity: { | ||
value: 'Pittsburg', | ||
}, | ||
EventCountry: { | ||
value: 'USA', | ||
}, | ||
EventName: { | ||
value: 'SUGCON North America', | ||
}, | ||
EventDate: { | ||
value: '2024-02-06T05:00:00Z', | ||
}, | ||
LinkToSite: { | ||
value: { | ||
href: 'https://www.sugcon.events/', | ||
text: 'Visit Site', | ||
linktype: 'external', | ||
url: 'https://www.sugcon.events/', | ||
anchor: '', | ||
target: '', | ||
}, | ||
}, | ||
Image: { | ||
value: { | ||
src: '../../../../images/sugcon-eu.svg', | ||
alt: '', | ||
}, | ||
}, | ||
EventState: { | ||
value: 'PA', | ||
}, | ||
}, | ||
}, | ||
{ | ||
id: 'f3f24e01-ad62-4126-b1f4-de06e8a2ead1', | ||
url: 'http://cm/Data/Events/SUGCON-EU', | ||
name: 'SUGCON EU', | ||
displayName: 'SUGCON EU', | ||
fields: { | ||
EventCity: { | ||
value: 'Philadelphia', | ||
}, | ||
EventCountry: { | ||
value: 'USA', | ||
}, | ||
EventName: { | ||
value: 'SUGCON Europe', | ||
}, | ||
EventDate: { | ||
value: '2024-02-08T05:00:00Z', | ||
}, | ||
LinkToSite: { | ||
value: { | ||
href: 'https://www.sugcon.events/', | ||
text: 'Visit Site', | ||
linktype: 'external', | ||
url: 'https://www.sugcon.events/', | ||
anchor: '', | ||
target: '', | ||
}, | ||
}, | ||
Image: { | ||
value: { | ||
src: '../../../../images/sugcon-eu.svg', | ||
alt: '', | ||
}, | ||
}, | ||
EventState: { | ||
value: 'PA', | ||
}, | ||
}, | ||
}, | ||
{ | ||
id: '7cb5c353-af74-4230-9803-93f1bd41625b', | ||
url: 'http://cm/Data/Events/SUGCON-NA', | ||
name: 'SUGCON NA', | ||
displayName: 'SUGCON NA', | ||
fields: { | ||
EventCity: { | ||
value: 'Pittsburg', | ||
}, | ||
EventCountry: { | ||
value: 'USA', | ||
}, | ||
EventName: { | ||
value: 'SUGCON North America', | ||
}, | ||
EventDate: { | ||
value: '2024-02-06T05:00:00Z', | ||
}, | ||
LinkToSite: { | ||
value: { | ||
href: 'https://www.sugcon.events/', | ||
text: 'Visit Site', | ||
linktype: 'external', | ||
url: 'https://www.sugcon.events/', | ||
anchor: '', | ||
target: '', | ||
}, | ||
}, | ||
Image: { | ||
value: { | ||
src: '../../../../images/sugcon-eu.svg', | ||
alt: '', | ||
}, | ||
}, | ||
EventState: { | ||
value: 'PA', | ||
}, | ||
}, | ||
}, | ||
], | ||
}, | ||
}, | ||
}; |
142 changes: 142 additions & 0 deletions
142
src/Project/Sugcon2024/items/Renderings/Sugcon2024/Basic Components/Event Teaser.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
--- | ||
ID: "3f73a97b-bfa5-4f66-b99c-d27a7a36832b" | ||
Parent: "ddc6ed3d-2e47-4945-a316-9a5304a0db3b" | ||
Template: "04646a89-996f-4ee7-878a-ffdbf1f0ef0d" | ||
Path: /sitecore/layout/Renderings/Project/Sugcon2024/Basic Components/Event Teaser | ||
SharedFields: | ||
- ID: "037fe404-dd19-4bf7-8e30-4dadf68b27b0" | ||
Hint: componentName | ||
Value: EventTeaser | ||
- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" | ||
Hint: __Icon | ||
Value: Office/32x32/elements4.png | ||
- ID: "1a7c85e5-dc0b-490d-9187-bb1dbcb4c72f" | ||
Hint: Datasource Template | ||
Value: /sitecore/templates/Project/Sugcon2024/Basic Components/Event Teaser | ||
- 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: "{8E84DEF2-FAD3-401B-844F-6EFA81D09DEF}" | ||
- ID: "b5b27af1-25ef-405c-87ce-369b3a004016" | ||
Hint: Datasource Location | ||
Value: "query:$site/*[@@name='Data']/*[@@templatename='Event Teaser Folder']|query:$sharedSites/*[@@name='Data']/*[@@templatename='Event Teaser Folder']" | ||
- ID: "c39a90ce-0035-41bb-90f6-3c8a6ea87797" | ||
Hint: AddFieldEditorButton | ||
Value: | ||
- 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: "80a6970d-a171-4bb6-bda7-022bf7a2dc19" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T202721Z | ||
- 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 |
120 changes: 63 additions & 57 deletions
120
src/Project/Sugcon2024/items/SiteEU/EU/Settings/Site Grouping/EU.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,63 @@ | ||
--- | ||
ID: "f1279037-e54c-48d4-8b4d-1f5e27377774" | ||
Parent: "57dbccfb-f8c2-4fec-8291-feba785f8734" | ||
Template: "e46f3af2-39fa-4866-a157-7017c4b2a40c" | ||
Path: /sitecore/content/Sugcon2024/EU/Settings/Site Grouping/EU | ||
BranchID: "45cf9f42-b3ac-4412-aab9-f8441c7e448e" | ||
SharedFields: | ||
- ID: "1ee576af-ba8e-4312-9fbd-2ccf8395baa1" | ||
Hint: StartItem | ||
Value: "{08762520-FA2D-410A-BA44-F02A0F4B40F9}" | ||
- ID: "6dd8a774-2ce5-4c9e-be7f-1eaf65789956" | ||
Hint: ThumbnailsRootPath | ||
Value: /sitecore/media library/Project/Sugcon2024/EU | ||
- ID: "8e0dd914-9afb-4d45-bf8b-7ff5d6e5337e" | ||
Hint: HostName | ||
Value: sugconeu2024.xmcloudcm.localhost | ||
- ID: "9eaf6dc9-b811-4cda-9edd-9697faba628a" | ||
Hint: POS | ||
Value: en=Sugcon2024EU | ||
- ID: "cb4e9e2e-2b66-43dc-ad3f-9caf363d28d3" | ||
Hint: SiteName | ||
Value: EU | ||
- ID: "da06d09e-02b6-464a-80fc-9d8d7fc875e3" | ||
Hint: Environment | ||
Value: * | ||
- ID: "f57099a3-526a-49f2-aebd-635453e48875" | ||
Hint: RenderingHost | ||
Value: Default | ||
- ID: "f6d8a61c-2f84-4401-bd24-52d2068172bc" | ||
Hint: __Originator | ||
Value: "{23E42340-77BE-49FC-A7C4-77D3CB545223}" | ||
Languages: | ||
- Language: en | ||
Versions: | ||
- Version: 1 | ||
Fields: | ||
- ID: "25bed78c-4957-4165-998a-ca1b52f67497" | ||
Hint: __Created | ||
Value: 20240105T121411Z | ||
- ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" | ||
Hint: __Owner | ||
Value: | | ||
sitecore\sebastian.winter@sitecore.com | ||
- ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" | ||
Hint: __Created by | ||
Value: | | ||
sitecore\sebastian.winter@sitecore.com | ||
- ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" | ||
Hint: __Revision | ||
Value: "e62922bb-5310-44fe-94bc-e9ef91b3c07d" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\1ISa5gYrpM | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240108T035552Z | ||
--- | ||
ID: "f1279037-e54c-48d4-8b4d-1f5e27377774" | ||
Parent: "57dbccfb-f8c2-4fec-8291-feba785f8734" | ||
Template: "e46f3af2-39fa-4866-a157-7017c4b2a40c" | ||
Path: /sitecore/content/Sugcon2024/EU/Settings/Site Grouping/EU | ||
BranchID: "45cf9f42-b3ac-4412-aab9-f8441c7e448e" | ||
SharedFields: | ||
- ID: "1ee576af-ba8e-4312-9fbd-2ccf8395baa1" | ||
Hint: StartItem | ||
Value: "{08762520-FA2D-410A-BA44-F02A0F4B40F9}" | ||
- ID: "6dd8a774-2ce5-4c9e-be7f-1eaf65789956" | ||
Hint: ThumbnailsRootPath | ||
Value: /sitecore/media library/Project/Sugcon2024/EU | ||
- ID: "8e0dd914-9afb-4d45-bf8b-7ff5d6e5337e" | ||
Hint: HostName | ||
Value: sugconeu2024.xmcloudcm.localhost | ||
- ID: "9eaf6dc9-b811-4cda-9edd-9697faba628a" | ||
Hint: POS | ||
Value: en=Sugcon2024EU | ||
- ID: "b59e43ab-84da-49f3-87a1-d2fcf648365b" | ||
Hint: Scheme | ||
Value: https | ||
- ID: "cb4e9e2e-2b66-43dc-ad3f-9caf363d28d3" | ||
Hint: SiteName | ||
Value: EU | ||
- ID: "da06d09e-02b6-464a-80fc-9d8d7fc875e3" | ||
Hint: Environment | ||
Value: * | ||
- ID: "e5b5ccb5-17a1-429d-bd3e-6122b3216e52" | ||
Hint: TargetHostName | ||
Value: sugconeu2024.xmcloudcm.localhost | ||
- ID: "f57099a3-526a-49f2-aebd-635453e48875" | ||
Hint: RenderingHost | ||
Value: Default | ||
- ID: "f6d8a61c-2f84-4401-bd24-52d2068172bc" | ||
Hint: __Originator | ||
Value: "{23E42340-77BE-49FC-A7C4-77D3CB545223}" | ||
Languages: | ||
- Language: en | ||
Versions: | ||
- Version: 1 | ||
Fields: | ||
- ID: "25bed78c-4957-4165-998a-ca1b52f67497" | ||
Hint: __Created | ||
Value: 20240105T121411Z | ||
- ID: "52807595-0f8f-4b20-8d2a-cb71d28c6103" | ||
Hint: __Owner | ||
Value: | | ||
sitecore\sebastian.winter@sitecore.com | ||
- ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" | ||
Hint: __Created by | ||
Value: | | ||
sitecore\sebastian.winter@sitecore.com | ||
- ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" | ||
Hint: __Revision | ||
Value: "36ecf44e-6043-42eb-bd29-bd29bc089ced" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240205T183819Z |
9 changes: 9 additions & 0 deletions
9
src/Project/Sugcon2024/items/SiteShared/Shared/Data/Events.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
ID: "c36c5684-770f-4959-ab4b-b8691699ffcb" | ||
Parent: "0c5c8db1-5dc6-4a54-a232-750f004bfb84" | ||
Template: "358fbe1b-55e0-467b-be91-681cce3c22bf" | ||
Path: /sitecore/content/Sugcon2024/Shared/Data/Events | ||
Languages: | ||
- Language: en | ||
Versions: | ||
- Version: 1 |
121 changes: 121 additions & 0 deletions
121
src/Project/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event Folder.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
--- | ||
ID: "358fbe1b-55e0-467b-be91-681cce3c22bf" | ||
Parent: "057961fa-04d8-4403-8c1f-97bfa6909972" | ||
Template: "ab86861a-6030-46c5-b394-e8f99e8b87db" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event Folder | ||
SharedFields: | ||
- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" | ||
Hint: __Icon | ||
Value: Office/32x32/folder_window.png | ||
- ID: "f7d48a55-2158-4f02-9356-756654404f73" | ||
Hint: __Standard values | ||
Value: "{5E2ADC96-BB41-473E-AC79-295B5A9CA3E3}" | ||
Languages: | ||
- Language: "de-DE" | ||
Fields: | ||
- ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" | ||
Hint: __Display name | ||
Value: Promo Ordner | ||
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: 20120620T144015Z | ||
- ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" | ||
Hint: __Created by | ||
Value: | | ||
sitecore\admin | ||
- ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" | ||
Hint: __Revision | ||
Value: "74fe2f18-5fef-4e2f-8e9e-7a8039010376" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T182244Z | ||
- 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 |
9 changes: 9 additions & 0 deletions
9
...Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event Folder/__Standard Values.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
ID: "5e2adc96-bb41-473e-ac79-295b5a9ca3e3" | ||
Parent: "358fbe1b-55e0-467b-be91-681cce3c22bf" | ||
Template: "358fbe1b-55e0-467b-be91-681cce3c22bf" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event Folder/__Standard Values | ||
Languages: | ||
- Language: en | ||
Versions: | ||
- Version: 1 |
121 changes: 121 additions & 0 deletions
121
src/Project/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event Teaser Folder.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
--- | ||
ID: "257a55ed-a2c1-4f5f-b369-23cdf02bde0b" | ||
Parent: "057961fa-04d8-4403-8c1f-97bfa6909972" | ||
Template: "ab86861a-6030-46c5-b394-e8f99e8b87db" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event Teaser Folder | ||
SharedFields: | ||
- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" | ||
Hint: __Icon | ||
Value: Office/32x32/folder_window.png | ||
- ID: "f7d48a55-2158-4f02-9356-756654404f73" | ||
Hint: __Standard values | ||
Value: "{824631A6-FD81-475A-A3FA-56471432AEC2}" | ||
Languages: | ||
- Language: "de-DE" | ||
Fields: | ||
- ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" | ||
Hint: __Display name | ||
Value: Promo Ordner | ||
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: 20120620T144015Z | ||
- ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" | ||
Hint: __Created by | ||
Value: | | ||
sitecore\admin | ||
- ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" | ||
Hint: __Revision | ||
Value: "96ddd9f5-3ef3-4df0-bca0-b319c80e2604" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T195304Z | ||
- 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 |
9 changes: 9 additions & 0 deletions
9
...024/items/Templates/Sugcon2024/Basic Components/Event Teaser Folder/__Standard Values.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
ID: "824631a6-fd81-475a-a3fa-56471432aec2" | ||
Parent: "257a55ed-a2c1-4f5f-b369-23cdf02bde0b" | ||
Template: "257a55ed-a2c1-4f5f-b369-23cdf02bde0b" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event Teaser Folder/__Standard Values | ||
Languages: | ||
- Language: en | ||
Versions: | ||
- Version: 1 |
130 changes: 130 additions & 0 deletions
130
src/Project/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event Teaser.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
--- | ||
ID: "1a613502-1a07-4d6c-9ad8-350e0e692946" | ||
Parent: "057961fa-04d8-4403-8c1f-97bfa6909972" | ||
Template: "ab86861a-6030-46c5-b394-e8f99e8b87db" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event Teaser | ||
SharedFields: | ||
- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" | ||
Hint: __Icon | ||
Value: office/32x32/elements4.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 | ||
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: "ab7d8e4a-67a7-433c-b273-f2521b0b38b1" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T195647Z | ||
- 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 |
118 changes: 118 additions & 0 deletions
118
src/Project/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event Teaser/Content.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
--- | ||
ID: "3d84742a-d730-4f1c-9dd3-63d04ef397d6" | ||
Parent: "1a613502-1a07-4d6c-9ad8-350e0e692946" | ||
Template: "e269fbb5-3750-427a-9149-7aa950b49301" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event Teaser/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: "07b6fe53-3f0d-4b27-a9d8-10f4031b3596" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T203303Z | ||
- 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 |
42 changes: 42 additions & 0 deletions
42
...ct/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event Teaser/Content/Events.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
ID: "99f2f5c7-a55f-4bfa-a4c7-5c1379cf2ecb" | ||
Parent: "3d84742a-d730-4f1c-9dd3-63d04ef397d6" | ||
Template: "455a3e98-a627-4b40-8035-e683a0331ac7" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event Teaser/Content/Events | ||
SharedFields: | ||
- ID: "1eb8ae32-e190-44a6-968d-ed904c794ebf" | ||
Hint: Source | ||
Value: | | ||
query:/sitecore/content//*[@@tid="{A4BB7FA4-095D-4353-89D0-394C54D2F518}"] | ||
- 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: "cf385d7f-3b0a-4c8b-b398-3d1f416b25e2" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T203303Z |
139 changes: 139 additions & 0 deletions
139
.../Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event Teaser/Content/Headline.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
--- | ||
ID: "ea4b74e0-9088-471a-ac19-ec99d5d4c9a9" | ||
Parent: "3d84742a-d730-4f1c-9dd3-63d04ef397d6" | ||
Template: "455a3e98-a627-4b40-8035-e683a0331ac7" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event Teaser/Content/Headline | ||
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: Headline | ||
Versions: | ||
- Version: 1 | ||
Fields: | ||
- ID: "25bed78c-4957-4165-998a-ca1b52f67497" | ||
Hint: __Created | ||
Value: 20111213T143500 | ||
- ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" | ||
Hint: __Revision | ||
Value: "256a0030-22cb-41db-9390-b869558c116b" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T203303Z | ||
- 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 |
130 changes: 130 additions & 0 deletions
130
src/Project/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
--- | ||
ID: "a4bb7fa4-095d-4353-89d0-394c54d2f518" | ||
Parent: "057961fa-04d8-4403-8c1f-97bfa6909972" | ||
Template: "ab86861a-6030-46c5-b394-e8f99e8b87db" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event | ||
SharedFields: | ||
- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" | ||
Hint: __Icon | ||
Value: office/32x32/compass.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 | ||
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: "74aae996-676c-4ae2-9dea-cf9e42be4983" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T183041Z | ||
- 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 |
118 changes: 118 additions & 0 deletions
118
src/Project/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event/Content.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
--- | ||
ID: "223156d6-e163-499f-9096-191c87054e0a" | ||
Parent: "a4bb7fa4-095d-4353-89d0-394c54d2f518" | ||
Template: "e269fbb5-3750-427a-9149-7aa950b49301" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event/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: "a8cfa042-3fc6-4dd4-a462-f81b3bb47956" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T185929Z | ||
- 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 |
42 changes: 42 additions & 0 deletions
42
...roject/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event/Content/EventCity.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
ID: "3948897b-4639-4f0b-aa50-d6dcf1915b9e" | ||
Parent: "223156d6-e163-499f-9096-191c87054e0a" | ||
Template: "455a3e98-a627-4b40-8035-e683a0331ac7" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event/Content/EventCity | ||
SharedFields: | ||
- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" | ||
Hint: Type | ||
Value: "Single-Line Text" | ||
- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" | ||
Hint: __Sortorder | ||
Value: 600 | ||
Languages: | ||
- Language: en | ||
Fields: | ||
- ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" | ||
Hint: Title | ||
Value: Event City | ||
Versions: | ||
- Version: 1 | ||
Fields: | ||
- ID: "25bed78c-4957-4165-998a-ca1b52f67497" | ||
Hint: __Created | ||
Value: 20240206T182917Z | ||
- 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: "b7ca95a1-da08-47e6-89d7-b191251ac7b0" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240212T174734Z |
42 changes: 42 additions & 0 deletions
42
...ect/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event/Content/EventCountry.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
ID: "62021e27-9c59-4ff7-abce-ed67822289a8" | ||
Parent: "223156d6-e163-499f-9096-191c87054e0a" | ||
Template: "455a3e98-a627-4b40-8035-e683a0331ac7" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event/Content/EventCountry | ||
SharedFields: | ||
- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" | ||
Hint: Type | ||
Value: "Single-Line Text" | ||
- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" | ||
Hint: __Sortorder | ||
Value: 700 | ||
Languages: | ||
- Language: en | ||
Fields: | ||
- ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" | ||
Hint: Title | ||
Value: Event Country | ||
Versions: | ||
- Version: 1 | ||
Fields: | ||
- ID: "25bed78c-4957-4165-998a-ca1b52f67497" | ||
Hint: __Created | ||
Value: 20240206T182917Z | ||
- 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: "8e7a8471-f7d9-437d-88e9-093cc179d83e" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240212T174745Z |
139 changes: 139 additions & 0 deletions
139
...roject/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event/Content/EventDate.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
--- | ||
ID: "869c07b4-d5be-4a25-8c27-cc20a19e8260" | ||
Parent: "223156d6-e163-499f-9096-191c87054e0a" | ||
Template: "455a3e98-a627-4b40-8035-e683a0331ac7" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event/Content/EventDate | ||
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: Date | ||
- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" | ||
Hint: __Sortorder | ||
Value: 200 | ||
Languages: | ||
- Language: "de-DE" | ||
Fields: | ||
- ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" | ||
Hint: Title | ||
Value: __Standard Werte | ||
- ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" | ||
Hint: __Display name | ||
Value: PromoIcon | ||
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: Event Date | ||
Versions: | ||
- Version: 1 | ||
Fields: | ||
- ID: "25bed78c-4957-4165-998a-ca1b52f67497" | ||
Hint: __Created | ||
Value: 20111213T133500Z | ||
- ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" | ||
Hint: __Revision | ||
Value: "c69cb1e8-0587-4ab4-80aa-7f30b550f7d2" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240212T174726Z | ||
- 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 |
139 changes: 139 additions & 0 deletions
139
...roject/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event/Content/EventName.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
--- | ||
ID: "de965ec8-6648-4bb3-aad9-6b7f97b8e935" | ||
Parent: "223156d6-e163-499f-9096-191c87054e0a" | ||
Template: "455a3e98-a627-4b40-8035-e683a0331ac7" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event/Content/EventName | ||
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: Event Name | ||
Versions: | ||
- Version: 1 | ||
Fields: | ||
- ID: "25bed78c-4957-4165-998a-ca1b52f67497" | ||
Hint: __Created | ||
Value: 20111213T143500 | ||
- ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" | ||
Hint: __Revision | ||
Value: "ddd8f288-700c-4128-8290-df658ab7d6ac" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240212T174721Z | ||
- 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 |
42 changes: 42 additions & 0 deletions
42
...oject/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event/Content/EventState.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
ID: "c2378472-9f54-477a-912a-f60f69105a4f" | ||
Parent: "223156d6-e163-499f-9096-191c87054e0a" | ||
Template: "455a3e98-a627-4b40-8035-e683a0331ac7" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event/Content/EventState | ||
SharedFields: | ||
- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" | ||
Hint: Type | ||
Value: "Single-Line Text" | ||
- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" | ||
Hint: __Sortorder | ||
Value: 650 | ||
Languages: | ||
- Language: en | ||
Fields: | ||
- ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" | ||
Hint: Title | ||
Value: Event State | ||
Versions: | ||
- Version: 1 | ||
Fields: | ||
- ID: "25bed78c-4957-4165-998a-ca1b52f67497" | ||
Hint: __Created | ||
Value: 20240206T185930Z | ||
- 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: "132d1f2c-9e51-4dd9-8b8d-c217f14ecf2a" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240212T174740Z |
143 changes: 143 additions & 0 deletions
143
src/Project/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event/Content/Image.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
--- | ||
ID: "b8648f4e-1adc-4ad2-951a-06af23e434b1" | ||
Parent: "223156d6-e163-499f-9096-191c87054e0a" | ||
Template: "455a3e98-a627-4b40-8035-e683a0331ac7" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event/Content/Image | ||
SharedFields: | ||
- ID: "1eb8ae32-e190-44a6-968d-ed904c794ebf" | ||
Hint: Source | ||
Value: "query:$siteMedia" | ||
- ID: "24cb32f0-e364-4f37-b400-0f2899097b5b" | ||
Hint: Enable Shared Language Fallback | ||
Value: 1 | ||
- ID: "ab162cc0-dc80-4abf-8871-998ee5d7ba32" | ||
Hint: Type | ||
Value: Image | ||
- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" | ||
Hint: __Sortorder | ||
Value: 50 | ||
Languages: | ||
- Language: "de-DE" | ||
Fields: | ||
- ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" | ||
Hint: Title | ||
Value: Text 2 | ||
- ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" | ||
Hint: __Display name | ||
Value: PromoText2 | ||
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: Image | ||
Versions: | ||
- Version: 1 | ||
Fields: | ||
- ID: "25bed78c-4957-4165-998a-ca1b52f67497" | ||
Hint: __Created | ||
Value: 20141106T115010 | ||
- ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" | ||
Hint: __Created by | ||
Value: | | ||
sitecore\adamnaj | ||
- ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" | ||
Hint: __Revision | ||
Value: "4465ae4a-be55-46fb-8be4-2af83d9c0ec3" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T185929Z | ||
- 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: テキスト 2 | ||
- ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" | ||
Hint: __Display name | ||
Value: プロモ テキスト2 | ||
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: 文本2 | ||
- ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" | ||
Hint: __Display name | ||
Value: 促销文字2 | ||
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 |
143 changes: 143 additions & 0 deletions
143
...oject/Sugcon2024/items/Templates/Sugcon2024/Basic Components/Event/Content/LinkToSite.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
--- | ||
ID: "abe48d09-f3d3-481b-ad7f-2ba5eadfc22e" | ||
Parent: "223156d6-e163-499f-9096-191c87054e0a" | ||
Template: "455a3e98-a627-4b40-8035-e683a0331ac7" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Event/Content/LinkToSite | ||
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: General Link | ||
- ID: "ba3f86a2-4a1c-4d78-b63d-91c2779c1b5e" | ||
Hint: __Sortorder | ||
Value: 800 | ||
Languages: | ||
- Language: "de-DE" | ||
Fields: | ||
- ID: "19a69332-a23e-4e70-8d16-b2640cb24cc8" | ||
Hint: Title | ||
Value: Text 3 | ||
- ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" | ||
Hint: __Display name | ||
Value: PromoText3 | ||
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: Link To Event Site | ||
Versions: | ||
- Version: 1 | ||
Fields: | ||
- ID: "25bed78c-4957-4165-998a-ca1b52f67497" | ||
Hint: __Created | ||
Value: 20141106T115010 | ||
- ID: "5dd74568-4d4b-44c1-b513-0af5f4cda34f" | ||
Hint: __Created by | ||
Value: | | ||
sitecore\adamnaj | ||
- ID: "8cdc337e-a112-42fb-bbb4-4143751e123f" | ||
Hint: __Revision | ||
Value: "c3742873-9075-440a-8c4d-96e9e5eb6fbf" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240212T174752Z | ||
- 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: テキスト 3 | ||
- ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" | ||
Hint: __Display name | ||
Value: プロモ テキスト3 | ||
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: 文字3 | ||
- ID: "b5e02ad9-d56f-4c41-a065-a133db87bdeb" | ||
Hint: __Display name | ||
Value: 促销文字3 | ||
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 |
131 changes: 131 additions & 0 deletions
131
...con2024/items/Templates/Sugcon2024/Basic Components/Rendering Parameters/Event Teaser.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
--- | ||
ID: "8e84def2-fad3-401b-844f-6efa81d09def" | ||
Parent: "386b9c07-16a9-4475-b1c1-6a18cb694635" | ||
Template: "ab86861a-6030-46c5-b394-e8f99e8b87db" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Rendering Parameters/Event Teaser | ||
SharedFields: | ||
- ID: "06d5295c-ed2f-4a54-9bf2-26228d113318" | ||
Hint: __Icon | ||
Value: office/32x32/star.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: "{5280F5D0-5552-4113-B951-8C5213BCAAD3}" | ||
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: "96e0b13b-08e5-4a61-a2f5-6354cddf082c" | ||
- ID: "badd9cf9-53e0-4d0c-bcc0-2d784c282f6a" | ||
Hint: __Updated by | ||
Value: | | ||
sitecore\UOUBIWQRx7 | ||
- ID: "d9cf14b1-fa16-4ba6-9288-e8a174d4d522" | ||
Hint: __Updated | ||
Value: 20240206T195300Z | ||
- 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 |
9 changes: 9 additions & 0 deletions
9
...lates/Sugcon2024/Basic Components/Rendering Parameters/Event Teaser/__Standard Values.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
ID: "5280f5d0-5552-4113-b951-8c5213bcaad3" | ||
Parent: "8e84def2-fad3-401b-844f-6efa81d09def" | ||
Template: "8e84def2-fad3-401b-844f-6efa81d09def" | ||
Path: /sitecore/templates/Project/Sugcon2024/Basic Components/Rendering Parameters/Event Teaser/__Standard Values | ||
Languages: | ||
- Language: en | ||
Versions: | ||
- Version: 1 |