Animations, Policy, Toolbar Colors

This commit is contained in:
Surya Paolo
2022-11-23 10:27:27 +01:00
parent 1ca8dcd184
commit 077127d129
3 changed files with 43 additions and 14 deletions

View File

@@ -7,5 +7,8 @@
"path": "../../../newfreeplanet" "path": "../../../newfreeplanet"
} }
], ],
"settings": {} "settings": {
"search.useIgnoreFiles": true,
"search.useParentIgnoreFiles": true
}
} }

View File

@@ -123,11 +123,15 @@ active: {
class4: { class4: {
type: String, type: String,
}, },
class_anim: { anim: {
type: String, name: { type: String},
clduration: { type: String},
cldelay: { type: String},
}, },
class_anim2: { anim2: {
type: String, name: { type: String},
clduration: { type: String},
cldelay: { type: String},
}, },
styleadd: { styleadd: {
type: String, type: String,

View File

@@ -95,22 +95,44 @@ const SiteSchema = new Schema({
keywords: { keywords: {
type: String, type: String,
}, },
confpages: {
font: { type: String },
col_toolbar: { type: String },
col_bgfooter: { type: String },
},
confsite: { confsite: {
options: { // ConfSite options: { // ConfSite
type: Number, type: Number,
default: 0, default: 0,
}, },
}, },
policy: {
show: { type: Boolean },
owneremail: { type: String },
siteName: { type: String },
ownerDataName: { type: String },
managerData: { type: String },
includeData: { type: String },
url: { type: String },
lastdataupdate: { type: String },
country: { type: String },
},
contacts: { contacts: {
facebook: { type: String}, facebook: { type: String },
instagram: { type: String}, instagram: { type: String },
whatsapp: { type: String}, whatsapp: { type: String },
whatsapp_home: { type: Boolean}, whatsapp_home: { type: Boolean },
telegram: { type: String}, telegram: { type: String },
youtube: { type: String}, youtube: { type: String },
email: { type: String}, email: { type: String },
address: { type: String}, address: { type: String },
map: { type: String}, map: { type: String },
info2: { type: String },
cell: { type: String },
},
footer_mobile: {
show_buttHome: { type: Boolean },
show_profile: { type: Boolean },
}, },
}); });