Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • software/fchh-website-content
  • TarikZiyad/fchh-website-content
  • kosai_14/fchh-website-content
3 results
Show changes
Commits on Source (34)
Showing
with 90 additions and 2 deletions
.DS_Store .DS_Store
\ No newline at end of file node_modules
dist
image: node:alpine image: node:18-alpine
variables: variables:
TEMPLATE_DOWNLOAD_URL: https://gitlab.fabcity.hamburg/fcos-suite/fcos-suite-astro/-/archive/main/fcos-suite-astro-main.zip TEMPLATE_DOWNLOAD_URL: https://gitlab.fabcity.hamburg/fcos-suite/fcos-suite-astro/-/archive/main/fcos-suite-astro-main.zip
......
public/images/slider/home-slider/tfom23-130_websize.jpg

183 KiB

public/images/slider/homefeed/TFOM-10.jpg

206 KiB

public/images/slider/homefeed/tfom23-130_websize.jpg

183 KiB

public/images/slider/homefeed/tfom23-632_websize.jpg

467 KiB

public/images/slider/homefeed/tfom23-917_websize.jpg

479 KiB

...@@ -29,7 +29,27 @@ const mapCollection = defineCollection({ ...@@ -29,7 +29,27 @@ const mapCollection = defineCollection({
}), }),
}); });
const socialsCollection = defineCollection({
schema: z.object({
alt: z.string(),
type: z.string(),
href: z.string(),
}),
});
const toolbarCollection = defineCollection({
schema: z.object({
title: z.string(),
icon: z.string(),
target: z.string(),
onlyDesktop: z.boolean().optional(),
order: z.number()
}),
});
export const collections = { export const collections = {
people: peopleCollection, people: peopleCollection,
map: mapCollection, map: mapCollection,
socials: socialsCollection,
toolbar: toolbarCollection,
}; };
---
alt: Facebook
type: facebook
href: "https://www.facebook.com/fabcityhamburg/"
---
---
alt: GitLab
type: gitlab
href: "https://gitlab.fabcity.hamburg"
---
---
alt: Instagram
type: instagram
href: "https://www.instagram.com/fabcityhh/"
---
---
alt: LinkedIn
type: linkedin
href: "https://www.linkedin.com/company/fab-city-hamburg/"
---
---
alt: Mastodon
type: mastodon
href: "https://mastodon.social/@fabcityhamburg"
---
---
alt: Twitter
type: twitter
href: "https://twitter.com/fabcityhamburg"
---
\ No newline at end of file
---
alt: "Youtube"
type: "youtube"
href: "https://www.youtube.com/c/FabCityHamburg"
---
---
order: 3
title: Community
icon: Chat
target: de/network/community
---
---
order: 4
title: Events
icon: Calendar
target: de/network/events
---
---
order: 2
title: Hub
icon: Folders
target: de/projects/knowledgehub/
onlyDesktop: true
---
---
order: 1
title: Map
icon: ChoroplethMap
target: de/network/map
---
---
order: 5
title: OS
icon: ApplicationVirtual
target: de/projects/fcos
---