Skip to content
Snippets Groups Projects
Commit 547b02e4 authored by Moritz Stückler's avatar Moritz Stückler :cowboy:
Browse files

fix: image paths

parent acda1f34
No related branches found
No related tags found
No related merge requests found
Pipeline #9794 passed
......@@ -3,5 +3,5 @@ PUBLIC_SENDINBLUE_POST_FORM_EN=https://abc.sibforms.com/serve/123
PUBLIC_MAPBOX_TOKEN=abc123
PUBLIC_HEAD_INJECT='<script async defer data-website-id="abc123" src="https://analytics.com"></script>'
PUBLIC_SITE_TITLE='Fab City OS Suite'
EDIT_LINK_BASE="https://gitlab.fabcity.hamburg/software/fchh-website-content/-/edit/%s/src/pages"
PUBLIC_EDIT_LINK_BASE="https://gitlab.fabcity.hamburg/fcos-suite/fcos-suite-astro/-/edit/%s/src/pages"
BASE_URL="/"
\ No newline at end of file
......@@ -25,12 +25,13 @@ type Props = MarkdownLayoutProps<{
const { frontmatter, url } = Astro.props;
const { EDIT_LINK_BASE, EDIT_LINK_BRANCH = "main" } = import.meta.env;
const { PUBLIC_EDIT_LINK_BASE, PUBLIC_EDIT_LINK_BRANCH = "main" } = import.meta
.env;
const editButtonLink =
EDIT_LINK_BASE &&
EDIT_LINK_BRANCH &&
format(EDIT_LINK_BASE, EDIT_LINK_BRANCH) + url + ".mdx";
PUBLIC_EDIT_LINK_BASE &&
PUBLIC_EDIT_LINK_BRANCH &&
format(PUBLIC_EDIT_LINK_BASE, PUBLIC_EDIT_LINK_BRANCH) + url + ".mdx";
const rawContent = await Astro.glob<IPage>("../pages/**/*.mdx");
......@@ -61,10 +62,7 @@ const breadcrumbs = buildBreadcrumbs(breadcrumbItems, url as string, baseUrl);
hideFooterSeparator={frontmatter.hideFooterSeparator}
title={frontmatter.title}
subtitle={frontmatter.subtitle}
titleImage={prefixWithBaseIfNotUrl(
frontmatter.headerImage,
baseUrl
)}
titleImage={frontmatter.headerImage}
tags={frontmatter.tags}
teaser={frontmatter.teaser || frontmatter.description}
dateAndAuthor={`${frontmatter.date || ""}${
......
......@@ -6,7 +6,6 @@ import type { MarkdownLayoutProps } from "astro";
import { getBaseUrl, buildPageTree } from "@utils";
import { LANGUAGES } from "@config";
import type { IPage } from "@interfaces/IPage";
import { prefixWithBaseIfNotUrl } from "@utils/Url";
type Props = MarkdownLayoutProps<{
title: string;
......
......@@ -10,7 +10,7 @@ headerImageTag: Moritz Kindler (Unsplash)
## Markdown Bilder
Bilder können in Markdown fie folgt verwendet werden: `![](images/slider/hamburg_unsplash.jpg)`
Bilder können in Markdown wie folgt verwendet werden: `![](images/slider/hamburg_unsplash.jpg)`
![](/images/slider/hamburg_unsplash.jpg)
## Bilder mit Beschriftung
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment