aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.py4
-rw-r--r--content/index.org4
-rw-r--r--publish.el2
-rw-r--r--theme/templates/base.html2
4 files changed, 6 insertions, 6 deletions
diff --git a/build.py b/build.py
index 435a7ca..165ba78 100644
--- a/build.py
+++ b/build.py
@@ -258,12 +258,12 @@ def run_emacs_publish(dev_mode=True):
print(result.stderr, file=sys.stderr)
sys.exit(1)
- annoying_file = Path(".build/seijaku.html")
+ annoying_file = Path(".build/cleberg-net.html")
if annoying_file.exists():
os.remove(annoying_file)
else:
print(
- "Warning: .build/seijaku.html not found, but Emacs exited successfully."
+ "Warning: .build/cleberg-net.html not found, but Emacs exited successfully."
)
diff --git a/content/index.org b/content/index.org
index aaeb1de..32e428d 100644
--- a/content/index.org
+++ b/content/index.org
@@ -1,2 +1,2 @@
-#+title: seijaku
-#+description: Just a blip of ones and zeroes.
+#+title: cleberg.net
+#+description: Stillness amidst the chaos.
diff --git a/publish.el b/publish.el
index fb5c39b..058d40c 100644
--- a/publish.el
+++ b/publish.el
@@ -21,7 +21,7 @@
;; Define site metadata
(weblorg-site
:theme nil
- :template-vars '(("site_name" . "seijaku")
+ :template-vars '(("site_name" . "cleberg.net")
("site_owner" . "Christian Cleberg <[email protected]>")
("site_description" . "Stillness amidst the chaos.")))
diff --git a/theme/templates/base.html b/theme/templates/base.html
index 65681e5..e21807e 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -3,7 +3,7 @@
<head>
{% block head %}
<meta charset="utf-8">
- <title>{% block subtitle %}{% endblock %}{% block title %}{{ site_name | default("seijaku") }}{% endblock %}</title>
+ <title>{% block subtitle %}{% endblock %}{% block title %}{{ site_name | default("cleberg.net") }}{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
{% if site_owner is defined %}<meta name="author" content="{{ site_owner }}">{% endif %}
{% if site_description is defined %}<meta name="description" content="{{ site_description }}">{% endif %}