add ability to include custom stylesheet (#85)
* add da-dk language * add ability to include custom stylesheet
This commit is contained in:
parent
cbf9d8adee
commit
394357c298
3 changed files with 10 additions and 2 deletions
|
@ -20,7 +20,8 @@ module.exports = {
|
|||
customHtml: {
|
||||
wishlists: process.env.CUSTOM_HTML_WISHLISTS,
|
||||
login: process.env.CUSTOM_HTML_LOGIN
|
||||
}
|
||||
},
|
||||
customCSS: process.env.CUSTOM_CSS || null
|
||||
}
|
||||
|
||||
if (module.exports.guestPassword) module.exports.wishlist.public = false
|
||||
|
|
|
@ -15,6 +15,8 @@ html(lang='en')
|
|||
link(rel='stylesheet', href=`${_CC.config.base}libraries/fontawesome/css/all.css`)
|
||||
link(rel='stylesheet', href=`${_CC.config.base}libraries/animate.min.css`)
|
||||
link(rel='stylesheet', href=`${_CC.config.base}css/main.css`)
|
||||
if _CC.config.customCSS
|
||||
link(rel='stylesheet', href=`${_CC.config.base}css/${_CC.config.customCSS}`)
|
||||
body
|
||||
.print
|
||||
.content
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue