aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2024-03-29-org-blog.org
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2025-03-11 16:09:26 -0500
committerChristian Cleberg <hello@cleberg.net>2025-03-11 16:09:26 -0500
commit75cb2408e9251a32779a2c8814d4aaf1a0aae57c (patch)
treefddf8653aa26a9486ed9e2f56c2215b1742f9f92 /content/blog/2024-03-29-org-blog.org
parentb6068f40908e9185fa8b04df1ebde52866f81296 (diff)
downloadcleberg.net-75cb2408e9251a32779a2c8814d4aaf1a0aae57c.tar.gz
cleberg.net-75cb2408e9251a32779a2c8814d4aaf1a0aae57c.tar.bz2
cleberg.net-75cb2408e9251a32779a2c8814d4aaf1a0aae57c.zip
move from cleberg.net to cmc.pub
Diffstat (limited to 'content/blog/2024-03-29-org-blog.org')
-rw-r--r--content/blog/2024-03-29-org-blog.org12
1 files changed, 6 insertions, 6 deletions
diff --git a/content/blog/2024-03-29-org-blog.org b/content/blog/2024-03-29-org-blog.org
index 5ae1a2b..6173231 100644
--- a/content/blog/2024-03-29-org-blog.org
+++ b/content/blog/2024-03-29-org-blog.org
@@ -8,7 +8,7 @@ feed duplicated itself when I moved this blog over to org-mode last night.
This post focuses specifically on the configuration and tools I use to blog from
Emacs with Org-Mode and does not focus on Emacs or Org-Mode themselves. Refer to
-the post I wrote about [[https://cleberg.net/blog/doom-emacs-org-mode.html][Doom Emacs & Org-Mode]] for more information about my base
+the post I wrote about [[https://cmc.pub/blog/doom-emacs-org-mode.html][Doom Emacs & Org-Mode]] for more information about my base
Emacs configuration.
* Weblorg
@@ -60,7 +60,7 @@ Now that I've installed weblorg, I need to configure the project. I'll start by
navigating to my site's source code and creating a =publish.el= file.
#+begin_src sh
-cd ~/Source/cleberg.net && nano publish.el
+cd ~/Source/cmc.pub && nano publish.el
#+end_src
Since I'm using Doom, Emacs will not automatically load the packages I need
@@ -80,13 +80,13 @@ explicitly tell Emacs where Doom stores the =htmlize=, =weblorg=, and
;; To build with the custom URL below, call:
;;;; ENV=prod emacs --script publish.el
(if (string= (getenv "ENV") "prod")
- (setq weblorg-default-url "https://cleberg.net"))
+ (setq weblorg-default-url "https://cmc.pub"))
;; site metadata
(weblorg-site
:theme nil
- :template-vars '(("site_name" . "cleberg.net")
- ("site_owner" . "hello@cleberg.net")
+ :template-vars '(("site_name" . "cmc.pub")
+ ("site_owner" . "hello@cmc.pub")
("site_description" . "Just a blip of ones and zeroes.")))
;; route for rendering the index page of the website
@@ -235,7 +235,7 @@ Within this script, I do the following:
#+begin_src sh
rm -rf .build/* && \
ENV=prod emacs--script publish.el && \
-scp -r .build/* ubuntu:/var/www/cleberg.net/
+scp -r .build/* ubuntu:/var/www/cmc.pub/
#+end_src
*** Time to Build