mirror of
https://github.com/tcsenpai/obsidiangarden_netlify.git
synced 2025-06-06 04:35:20 +00:00
Add support for setting style settings
This commit is contained in:
parent
be33faaba3
commit
f7e92d227c
@ -20,6 +20,9 @@ module.exports = async () => {
|
||||
title: false,
|
||||
default: process.env.NOTE_ICON_DEFAULT,
|
||||
};
|
||||
|
||||
const styleSettingsCss = process.env.STYLE_SETTINGS_CSS || "";
|
||||
|
||||
if (process.env.NOTE_ICON_TITLE && process.env.NOTE_ICON_TITLE == "true") {
|
||||
bodyClasses.push("title-note-icon");
|
||||
noteIconsSettings.title = true;
|
||||
@ -45,6 +48,10 @@ module.exports = async () => {
|
||||
bodyClasses.push("backlinks-note-icon");
|
||||
noteIconsSettings.backlinks = true;
|
||||
}
|
||||
if(styleSettingsCss){
|
||||
bodyClasses.push("css-settings-manager");
|
||||
}
|
||||
|
||||
let timestampSettings = {
|
||||
timestampFormat: process.env.TIMESTAMP_FORMAT || "MMM dd, yyyy h:mm a",
|
||||
showCreated: process.env.SHOW_CREATED_TIMESTAMP == "true",
|
||||
@ -60,6 +67,7 @@ module.exports = async () => {
|
||||
baseTheme: process.env.BASE_THEME || "dark",
|
||||
siteName: process.env.SITE_NAME_HEADER || "Digital Garden",
|
||||
siteBaseUrl: baseUrl,
|
||||
styleSettingsCss
|
||||
};
|
||||
|
||||
return meta;
|
||||
|
@ -39,3 +39,11 @@
|
||||
<meta name="{{ name }}" content="{{ content }}">
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if meta.styleSettingsCss %}
|
||||
<style>
|
||||
{{ meta.styleSettingsCss | safe }}
|
||||
</style>
|
||||
{% endif %}
|
||||
<style>
|
||||
</style>
|
Loading…
x
Reference in New Issue
Block a user