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 (79)
Showing
with 87 additions and 3 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
...@@ -15,10 +15,12 @@ build: ...@@ -15,10 +15,12 @@ build:
before_script: before_script:
- apk add --no-cache curl zip rsync - apk add --no-cache curl zip rsync
script: script:
# Download ZIP file from the Astro repo (faster than Git cloning)
- curl $TEMPLATE_DOWNLOAD_URL -o $TEMPLATE_FILENAME - curl $TEMPLATE_DOWNLOAD_URL -o $TEMPLATE_FILENAME
- unzip -o $TEMPLATE_FILENAME - unzip -o $TEMPLATE_FILENAME
- rm $TEMPLATE_FILENAME - rm $TEMPLATE_FILENAME
- rsync -va --exclude="src/pages" --exclude="src/content" --exclude="public" --exclude ".git" fcos-suite-astro-main/ . # Copy all files from the template repo, except Content Markdown files (already in working dir)
- rsync -va --exclude="src/pages/**/*.md" --exclude="src/pages/**/*.mdx" --exclude="src/content/**/*.md" --exclude="src/content/**/*.mdx" --exclude="public" --exclude ".git" fcos-suite-astro-main/ .
- rm -rf fcos-suite-astro-main - rm -rf fcos-suite-astro-main
# Replacing the whole Astro config is a temporary workaround b/c Astro # Replacing the whole Astro config is a temporary workaround b/c Astro
# currently doesn't support env variables inside of the config file. # currently doesn't support env variables inside of the config file.
......
public/images/community/element-messenger.png

429 KiB

public/images/community/newsletter.png

850 KiB

public/images/community/social-mastodon.jpg

159 KiB

public/images/fcos/Staging-website-fabcityos.jpeg

72.8 KiB

public/images/network/community/tfom23-82_websize.jpg

216 KiB

public/images/news/podcast/FCHH-Podcast-Jaromil-sqare.png

983 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
---