From c52bb9164feea9c3a4064f4fe7b94af3fbcc1412 Mon Sep 17 00:00:00 2001 From: Fabien POLLY Date: Thu, 22 Jan 2026 22:52:13 +0100 Subject: [PATCH] fixes --- config.js | 109 +++++++ index.html | 566 +++++++++++++++++++++++++++++-------- themes/cyberpunk.css | 35 +++ themes/dark.css | 15 + themes/electric-blue.css | 28 ++ themes/forest.css | 27 ++ themes/glassmorphism.css | 55 ++++ themes/light.css | 32 +++ themes/monochrome.css | 27 ++ themes/nature.css | 52 ++++ themes/nord-light.css | 25 ++ themes/paper-cool.css | 25 ++ themes/paper-sepia.css | 25 ++ themes/paper.css | 54 ++++ themes/retro-acid-burn.css | 106 +++++++ themes/retro-hackers-w.css | 130 +++++++++ themes/retro-hackers.css | 149 ++++++++++ themes/retro-irc.css | 70 +++++ themes/solarized-light.css | 30 ++ 19 files changed, 1449 insertions(+), 111 deletions(-) create mode 100644 config.js create mode 100644 themes/cyberpunk.css create mode 100644 themes/dark.css create mode 100644 themes/electric-blue.css create mode 100644 themes/forest.css create mode 100644 themes/glassmorphism.css create mode 100644 themes/light.css create mode 100644 themes/monochrome.css create mode 100644 themes/nature.css create mode 100644 themes/nord-light.css create mode 100644 themes/paper-cool.css create mode 100644 themes/paper-sepia.css create mode 100644 themes/paper.css create mode 100644 themes/retro-acid-burn.css create mode 100644 themes/retro-hackers-w.css create mode 100644 themes/retro-hackers.css create mode 100644 themes/retro-irc.css create mode 100644 themes/solarized-light.css diff --git a/config.js b/config.js new file mode 100644 index 0000000..b5cd75a --- /dev/null +++ b/config.js @@ -0,0 +1,109 @@ +/** + * AcidWiki Configuration + * Customize your wiki by changing the values below. + */ +const CONFIG = { + // Project Information + projectName: "ACIDWIKI", + projectSubtitle: "WIKI NODE", + description: "Official Documentation and Wiki Template", + + // Versioning Settings + // type: "github" (automatic from API) or "local" (manual) + versioning: { + type: "github", + manualVersion: "v1.0.0", + manualDate: "2026-01-21" + }, + + // GitHub Repository (for version checking when type is "github") + // Format: "username/repo" + repo: "infinition/Bjorn", + branch: "wiki", + + // Theme Settings + themes: [ + { id: "dark", name: "Dark Mode", file: "themes/dark.css", isDark: true }, + { id: "dim", name: "Dim Mode", file: "themes/light.css", isDark: true }, + { id: "electric-blue", name: "Electric Blue", file: "themes/electric-blue.css", isDark: true }, + { id: "cyberpunk", name: "Cyberpunk", file: "themes/cyberpunk.css", isDark: true }, + { id: "forest", name: "Forest", file: "themes/forest.css", isDark: true }, + { id: "monochrome", name: "Monochrome", file: "themes/monochrome.css", isDark: true }, + { id: "retro-hackers", name: "Retro Hackers", file: "themes/retro-hackers.css", isDark: true }, + { id: "retro-hackers-w", name: "Retro Hackers White", file: "themes/retro-hackers-w.css", isDark: false }, + { id: "retro-acid-burn", name: "Retro Acid Burn", file: "themes/retro-acid-burn.css", isDark: true }, + { id: "paper", name: "Paper", file: "themes/paper.css", isDark: false }, + { id: "solarized-light", name: "Solarized Light", file: "themes/solarized-light.css", isDark: false }, + { id: "nord-light", name: "Nord Light", file: "themes/nord-light.css", isDark: false }, + { id: "paper-sepia", name: "Sepia Paper", file: "themes/paper-sepia.css", isDark: false }, + { id: "paper-cool", name: "Cool Paper", file: "themes/paper-cool.css", isDark: false }, + { id: "retro-irc", name: "Retro IRC", file: "themes/retro-irc.css", isDark: false }, + { id: "nature", name: "Nature", file: "themes/nature.css", isDark: false }, + { id: "glassmorphism", name: "Glassmorphism", file: "themes/glassmorphism.css", isDark: true } + ], + defaultTheme: "dark", + + // Feature Toggles + features: { + showChangelog: true, + showSearch: true, + showSocialBadges: true, + showThemeToggle: true, + pageTransitions: true, + autoCollapseSidebar: false + }, + + // Custom Navigation Links + // Inserted at the top or bottom of the sidebar + links: { + top: [ + { name: "Main Site", url: "https://example.com", icon: "external-link" } + ], + bottom: [ + { name: "Portfolio", url: "https://portfolio.example.com", icon: "briefcase" }, + { name: "Store", url: "https://store.example.com", icon: "shopping-cart" } + ] + }, + + // Footer Customization + footerText: "© 2026 ACIDWIKI - All rights reserved", + + // UI Strings (Custom labels for the interface) + ui: { + joinUsTitle: ":: JOIN US ::", + onThisPageTitle: "On this page", + changelogTitle: "Changelog", + searchPlaceholder: "Search (Ctrl+K)...", + lastUpdatedText: "Updated", + readingTimePrefix: "~", + readingTimeSuffix: "min read", + noResultsText: "No results found.", + noSectionsText: "No sections", + fetchingReleasesText: "Fetching GitHub releases...", + checkingVersionText: "checking...", + initializingText: "Initializing...", + themeChangedText: "Theme changed to: ", + menuText: "Menu", + onThisPageMobile: "On this page" + }, + + // Logo Settings + logoPath: "assets/bjorn.png", + logoPlaceholder: "https://placehold.co/40x40/111214/22c55e?text=A", + + // Social Links + // Set to null or empty string to hide the link + social: { + discord: "https://discord.gg/B3ZH9taVfT", + reddit: "https://www.reddit.com/r/Bjorn_CyberViking/", + github: "https://github.com/infinition/Bjorn", + buyMeACoffee: "https://buymeacoffee.com/infinition" + }, + + // Badge Labels (Optional customization for shields.io) + badges: { + discordLabel: "COMMUNITY", + redditLabel: "r/ACIDWIKI", + githubLabel: "ACIDWIKI" + } +}; diff --git a/index.html b/index.html index 46e5f24..47055fe 100644 --- a/index.html +++ b/index.html @@ -4,8 +4,14 @@ - BJORN // WIKI NODE - + BJORN // WIKI NODE + + + + + + + @@ -31,28 +37,8 @@