Add support for setting style settings

This commit is contained in:
Ole Eskild Steensen 2023-03-17 16:15:03 +01:00
parent be33faaba3
commit f7e92d227c
2 changed files with 18 additions and 2 deletions

View File

@ -2,7 +2,7 @@ require("dotenv").config();
const axios = require("axios");
const fs = require("fs");
const crypto = require("crypto");
const {globSync} = require("glob");
const { globSync } = require("glob");
module.exports = async () => {
let baseUrl = process.env.SITE_BASE_URL || "";
@ -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;

View File

@ -38,4 +38,12 @@
{% for name, content in metatags %}
<meta name="{{ name }}" content="{{ content }}">
{% endfor %}
{% endif %}
{% endif %}
{% if meta.styleSettingsCss %}
<style>
{{ meta.styleSettingsCss | safe }}
</style>
{% endif %}
<style>
</style>