From abdd7e6ef2813a419ea74a9cc442fda68bdd91b9 Mon Sep 17 00:00:00 2001 From: Dibyashanu Pati <> Date: Sun, 2 Mar 2025 10:10:00 +0530 Subject: [PATCH] minor fixes --- content/links.org | 3 +++ content/news.org | 3 +++ create-site.el | 6 ++++-- create.sh | 1 + 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/content/links.org b/content/links.org index 53a000f..aa0e06c 100644 --- a/content/links.org +++ b/content/links.org @@ -24,6 +24,9 @@ #+TOC: headlines 1 +* karthinks.com +** Clearnet +https://karthinks.com/ * cosmicpirates.space ** Clearnet https://cosmicpirates.space/ diff --git a/content/news.org b/content/news.org index 2ede576..e577028 100644 --- a/content/news.org +++ b/content/news.org @@ -8,6 +8,9 @@ : +--------------------------------------+ #+end_center +* Planted the seeds to my [[../exocortex/][Thought Garden]] - [2025-02-11 Tue] +I discovered [[https://quartz.jzhao.xyz/][Quartz]] + * [[https://about.gitea.com/][Gitea]] Service now up - [2025-01-23 Thu] Now hopefully I will be motivated enough to share the sauce tor - http://pohnq5z43ok3tefj6v3qx2zgn7zinpf4s55kztqxifa2poc3oirpe2id.onion/ diff --git a/create-site.el b/create-site.el index ed6a1d6..0790235 100755 --- a/create-site.el +++ b/create-site.el @@ -35,9 +35,9 @@ :after ox :config (setq org-hugo-base-dir "~/projects/cosmicflow.space/public/exocortex-hugo-md" ) - (setq org-hugo-default-section-directory "braindump") + (setq org-hugo-default-section-directory "./") ) -(setq org-roam-directory "~/projects/notes/") +(setq org-roam-directory "~/projects/thought_garden/") ;; modified this function from https://github.com/kaushalmodi/ox-hugo/discussions/585#discussioncomment-2335203 (defun ox-hugo/export-all (&optional org-files-root-dir dont-recurse) @@ -126,7 +126,9 @@ Example usage in Emacs Lisp: (ox-hugo/export-all \"~/org\")." (div (@ (class "container")) (nav (@ (class "nav")) (a (@ (class "nav-link") (href "/")) "Home") " " + (a (@ (class "nav-link") (href "/exocortex/")) "Thought Garden") " " (a (@ (class "nav-link") (href "/blogs/")) "Blog") " " + (a (@ (class "nav-link") (href "https://cosmicflow.space:3030/")) "Git") " " (a (@ (class "nav-link") (href "/about/")) "About") " " (a (@ (class "nav-link") (href "/contact/")) "PGP") " " (a (@ (class "nav-link") (href "/links/")) "Links") " " diff --git a/create.sh b/create.sh index 8e8ad37..8e78aca 100755 --- a/create.sh +++ b/create.sh @@ -2,6 +2,7 @@ rm -rf ./public/cosmicflow-html/ rm -rf ./public/exocortex-hugo-md/content/ +rm -rf ./public/exocortex-hugo-md/public/* # generate the html and gemini versions of the site using org-publish emacs -Q --batch -l create-site.el