mediacms/templates/config/installation/site.html

54 lines
1.0 KiB
HTML
Raw Normal View History

2020-12-16 12:48:37 +01:00
MediaCMS.site = {
id: 'mediacms',
title: "{{PORTAL_NAME}}",
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: {
mode: '{{DEFAULT_THEME}}',
2020-12-16 12:48:37 +01:00
switch: {
position: 'sidebar', // Valid values: 'header', 'sidebar'.
2020-12-16 12:48:37 +01:00
},
},
logo:{
lightMode:{
img: "/static/images/logo_dark.png",
svg: "/static/images/logo_dark.svg",
2020-12-16 12:48:37 +01:00
},
darkMode:{
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',
},
},
};