Skip to content

Commit 0906f3f

Browse files
committed
feat: add website page
1 parent e06a4ba commit 0906f3f

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

.changeset/polite-coats-care.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"r.obin.ch": patch
3+
---
4+
5+
Add website page

astro.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import rehypeSlug from 'rehype-slug';
77
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
88
import { remarkExcerpt } from './src/remark/remark-excerpt';
99
import search from './src/integrations/search';
10-
1110
import sitemap from '@astrojs/sitemap';
1211

1312
// https://astro.build/config

src/content/pages/de/website.mdx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
---
22
path: webseite
33
title: Webseite
4-
layout: ../../../layouts/pages/Page.astro
4+
layout: ../../../layouts/pages/PageWithAside.astro
55
---
66

7+
8+
import License from '../../../../LICENSE?raw';
9+
import Changelog from '../../../../CHANGELOG.md';
10+
import { Code } from 'astro:components';
11+
712
Hier sind die Informationen zur Webseite zu finden.
813

914
## Lizenz
15+
16+
<Code code={License} lang="plaintext" theme="github-light" />
17+
18+
## Änderungsverlauf
19+
20+
<Changelog />

src/content/pages/en/website.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ title: Website
44
layout: ../../../layouts/pages/Page.astro
55
---
66

7+
import License from '../../../../LICENSE?raw';
8+
import Changelog from '../../../../CHANGELOG.md';
9+
import { Code } from 'astro:components';
10+
711
Here you can find information about this website.
812

913
## License
14+
15+
<Code code={License} lang="plaintext" theme="github-light" />
16+
17+
## Changelog
18+
19+
<Changelog />

0 commit comments

Comments
 (0)