Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fcos-suite-astro
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fab City OS Suite
fcos-suite-astro
Commits
a622396e
Commit
a622396e
authored
1 year ago
by
Moritz Stückler
Browse files
Options
Downloads
Patches
Plain Diff
fix: base url in header image
parent
ff25992f
No related branches found
Branches containing commit
No related tags found
1 merge request
!55
fix: base url in header image
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/layouts/ArticleLayout.astro
+5
-1
5 additions, 1 deletion
src/layouts/ArticleLayout.astro
src/layouts/HomeLayout.astro
+4
-1
4 additions, 1 deletion
src/layouts/HomeLayout.astro
src/utils/Url.ts
+22
-0
22 additions, 0 deletions
src/utils/Url.ts
with
31 additions
and
2 deletions
src/layouts/ArticleLayout.astro
+
5
−
1
View file @
a622396e
...
...
@@ -7,6 +7,7 @@ import { getBaseUrl, buildPageTree, buildBreadcrumbs } from "@utils";
import { LANGUAGES } from "@config";
import type { IPage } from "@interfaces/IPage";
import { format } from "node:util";
import { prefixWithBaseIfNotUrl } from "@utils/Url";
type Props = MarkdownLayoutProps<{
title: string;
...
...
@@ -60,7 +61,10 @@ const breadcrumbs = buildBreadcrumbs(breadcrumbItems, url as string, baseUrl);
hideFooterSeparator={frontmatter.hideFooterSeparator}
title={frontmatter.title}
subtitle={frontmatter.subtitle}
titleImage={frontmatter.headerImage}
titleImage={prefixWithBaseIfNotUrl(
frontmatter.headerImage,
baseUrl
)}
tags={frontmatter.tags}
teaser={frontmatter.teaser || frontmatter.description}
dateAndAuthor={`${frontmatter.date || ""}${
...
...
This diff is collapsed.
Click to expand it.
src/layouts/HomeLayout.astro
+
4
−
1
View file @
a622396e
...
...
@@ -6,6 +6,7 @@ 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;
...
...
@@ -30,7 +31,9 @@ const menuItems = buildPageTree(rawContent, baseUrl, localeFromUrl);
menuItems={menuItems}
compact={true}
/>
<HeroSection src={frontmatter.headerImage} />
<HeroSection
src={prefixWithBaseIfNotUrl(frontmatter.headerImage, baseUrl)}
/>
<main class="fc-overflow-x-hidden">
<slot />
</main>
...
...
This diff is collapsed.
Click to expand it.
src/utils/Url.ts
+
22
−
0
View file @
a622396e
...
...
@@ -10,3 +10,25 @@ export const getBaseUrl = (withoutEndingSlash?: boolean): string => {
}
return
baseUrl
;
};
/**
* Prefix a given path with a base url, if the given path is NOT a valid external URL.
* @param path
* @param baseUrl
* @returns
*/
export
const
prefixWithBaseIfNotUrl
=
(
path
:
string
,
baseUrl
?:
string
):
string
=>
{
if
(
baseUrl
)
{
const
isExternalUrl
=
path
.
toLowerCase
().
startsWith
(
"
http
"
);
const
hasTrailingSlash
=
path
.
endsWith
(
"
/
"
);
return
isExternalUrl
?
path
:
`
${
baseUrl
}${
hasTrailingSlash
?
""
:
"
/
"
}${
path
}
`
;
}
return
path
;
};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment