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"
}
],
"settings": {}
"settings": {
"search.useIgnoreFiles": true,
"search.useParentIgnoreFiles": true
}
}

View File

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

View File

@@ -95,22 +95,44 @@ const SiteSchema = new Schema({
keywords: {
type: String,
},
confpages: {
font: { type: String },
col_toolbar: { type: String },
col_bgfooter: { type: String },
},
confsite: {
options: { // ConfSite
type: Number,
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: {
facebook: { type: String},
instagram: { type: String},
whatsapp: { type: String},
whatsapp_home: { type: Boolean},
telegram: { type: String},
youtube: { type: String},
email: { type: String},
address: { type: String},
map: { type: String},
facebook: { type: String },
instagram: { type: String },
whatsapp: { type: String },
whatsapp_home: { type: Boolean },
telegram: { type: String },
youtube: { type: String },
email: { type: String },
address: { type: String },
map: { type: String },
info2: { type: String },
cell: { type: String },
},
footer_mobile: {
show_buttHome: { type: Boolean },
show_profile: { type: Boolean },
},
});