Add Gruvbox share theme + blog system for Trilium (anonymized)

Blog generator, publish manager, share scripts, theme CSS, highlight.js
bundles, font, favicon, templates and generated-reference outputs, plus an
English installation guide.
This commit is contained in:
trilium-share-gruvbox
2026-08-28 13:36:22 +02:00
commit aa7a2d0ab5
31 changed files with 4387 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<script>
(function () {
document.addEventListener("click", function (e) {
if (e.defaultPrevented) return;
var card = e.target.closest(".blog-post");
if (!card) return;
if (e.target.closest("a")) return;
var link = card.querySelector(".blog-post-title a");
if (!link) return;
e.preventDefault();
window.location.href = link.getAttribute("href");
});
})();
</script>