mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-23 01:53:00 +00:00
feat: migrate backend to cosmiconfig
This commit is contained in:
27
backend/backend/config/f-u/about-pages/imprint.js
Normal file
27
backend/backend/config/f-u/about-pages/imprint.js
Normal file
@@ -0,0 +1,27 @@
|
||||
// @ts-check
|
||||
import {SCAboutPageContentType} from '@openstapps/core';
|
||||
|
||||
/** @type {import('@openstapps/core').SCAboutPage} */
|
||||
export const imprint = {
|
||||
title: 'Impressum',
|
||||
content: [
|
||||
{
|
||||
// language=Markdown
|
||||
value: `[Impressum der Johann Wolfgang Goethe-Universität Frankfurt am Main](https://www.uni-frankfurt.de/impressum)`,
|
||||
translations: {
|
||||
en: {
|
||||
// language=Markdown
|
||||
value: `[Imprint of the Goethe University Frankfurt](https://www.uni-frankfurt.de/impressum)`,
|
||||
},
|
||||
},
|
||||
type: SCAboutPageContentType.MARKDOWN,
|
||||
},
|
||||
],
|
||||
translations: {
|
||||
en: {
|
||||
title: 'Imprint',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default imprint;
|
||||
Reference in New Issue
Block a user