2020-12-16 12:48:37 +01:00
|
|
|
MediaCMS.site = {
|
|
|
|
id: 'mediacms',
|
|
|
|
title: "{{PORTAL_NAME}}",
|
2021-03-21 19:36:32 +01:00
|
|
|
url: '{{FRONTEND_HOST}}',
|
2022-11-29 10:22:30 +01:00
|
|
|
api: '{{FRONTEND_HOST}}/api/v1',
|
2020-12-16 12:48:37 +01:00
|
|
|
theme: {
|
2021-04-20 21:05:31 +02:00
|
|
|
mode: '{{DEFAULT_THEME}}',
|
2020-12-16 12:48:37 +01:00
|
|
|
switch: {
|
2021-07-11 17:01:34 +02:00
|
|
|
position: 'sidebar', // Valid values: 'header', 'sidebar'.
|
2020-12-16 12:48:37 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
logo:{
|
|
|
|
lightMode:{
|
2021-03-21 19:36:32 +01:00
|
|
|
img: "/static/images/logo_dark.png",
|
|
|
|
svg: "/static/images/logo_dark.svg",
|
2020-12-16 12:48:37 +01:00
|
|
|
},
|
|
|
|
darkMode:{
|
2021-03-21 19:36:32 +01:00
|
|
|
img: "/static/images/logo_light.png",
|
|
|
|
svg: "/static/images/logo_light.svg",
|
2020-12-16 12:48:37 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
pages: {
|
|
|
|
latest:{
|
|
|
|
title: 'Recent uploads',
|
|
|
|
},
|
|
|
|
featured:{
|
|
|
|
title: 'Featured',
|
|
|
|
},
|
|
|
|
recommended:{
|
|
|
|
title: 'Recommended',
|
|
|
|
},
|
|
|
|
members:{
|
|
|
|
title: 'Members',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
userPages: {
|
|
|
|
liked: {
|
|
|
|
title: 'Liked media',
|
|
|
|
},
|
|
|
|
history: {
|
|
|
|
title: 'History',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
taxonomies: {
|
|
|
|
tags: {
|
|
|
|
title: 'Tags',
|
|
|
|
},
|
|
|
|
categories: {
|
|
|
|
title: 'Categories',
|
|
|
|
},
|
|
|
|
},
|
2021-03-21 19:36:32 +01:00
|
|
|
};
|
|
|
|
|