From f7691003facc116f000d9326f87f7f254db96bb1 Mon Sep 17 00:00:00 2001 From: moo Date: Tue, 16 Jun 2026 09:33:13 -0700 Subject: [PATCH] stuff --- justfile | 1 + public/blog/first/index.html | 2 +- public/blog/gleam/index.html | 2 +- public/blog/index.html | 2 +- public/blog/second/index.html | 2 +- public/miniblog/firstmini/index.html | 2 +- public/miniblog/gitweb/index.html | 2 +- public/miniblog/index.html | 2 +- templates/base.html | 2 +- templates/blog-page.html | 2 +- templates/blog.html | 2 +- templates/miniblog-page.html | 2 +- 12 files changed, 12 insertions(+), 11 deletions(-) diff --git a/justfile b/justfile index 609c772..6f35ece 100644 --- a/justfile +++ b/justfile @@ -23,4 +23,5 @@ deploy: ssh root@taranathan.com 'cd /root/blog/ && git fetch --all && git reset --hard origin/main' deploy-raw: + git push ssh root@taranathan.com 'cd /root/blog/ && git fetch --all && git reset --hard origin/main' diff --git a/public/blog/first/index.html b/public/blog/first/index.html index 4594a81..50ff8dd 100644 --- a/public/blog/first/index.html +++ b/public/blog/first/index.html @@ -3,7 +3,7 @@ - first post - MyBlog + first post diff --git a/public/blog/gleam/index.html b/public/blog/gleam/index.html index d034d6e..bb47f43 100644 --- a/public/blog/gleam/index.html +++ b/public/blog/gleam/index.html @@ -3,7 +3,7 @@ - gleam - MyBlog + gleam diff --git a/public/blog/index.html b/public/blog/index.html index f71db53..feb3c2c 100644 --- a/public/blog/index.html +++ b/public/blog/index.html @@ -3,7 +3,7 @@ - Blog posts - MyBlog + Blog posts diff --git a/public/blog/second/index.html b/public/blog/second/index.html index 1e38aff..d919b09 100644 --- a/public/blog/second/index.html +++ b/public/blog/second/index.html @@ -3,7 +3,7 @@ - second post - MyBlog + second post diff --git a/public/miniblog/firstmini/index.html b/public/miniblog/firstmini/index.html index e7946d4..b1381cf 100644 --- a/public/miniblog/firstmini/index.html +++ b/public/miniblog/firstmini/index.html @@ -3,7 +3,7 @@ - first mini - MyBlog + first mini diff --git a/public/miniblog/gitweb/index.html b/public/miniblog/gitweb/index.html index 06ccfda..872eca2 100644 --- a/public/miniblog/gitweb/index.html +++ b/public/miniblog/gitweb/index.html @@ -3,7 +3,7 @@ - gitweb! - MyBlog + gitweb! diff --git a/public/miniblog/index.html b/public/miniblog/index.html index 57d5bcc..00d2c59 100644 --- a/public/miniblog/index.html +++ b/public/miniblog/index.html @@ -3,7 +3,7 @@ - Miniblog/journal posts - MyBlog + Miniblog/journal posts diff --git a/templates/base.html b/templates/base.html index 28d35f4..69dc716 100644 --- a/templates/base.html +++ b/templates/base.html @@ -3,7 +3,7 @@ - {% block title %}MyBlog{% endblock title %} + {% block title %}Blog{% endblock title %} diff --git a/templates/blog-page.html b/templates/blog-page.html index cb5e020..8db0ce9 100644 --- a/templates/blog-page.html +++ b/templates/blog-page.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %}{{ page.title }} - MyBlog{% endblock title %} +{% block title %}{{ page.title }}{% endblock title %} {% block content %}
diff --git a/templates/blog.html b/templates/blog.html index 675dd0c..84a5d5b 100644 --- a/templates/blog.html +++ b/templates/blog.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %}{{ section.title }} - MyBlog{% endblock title %} +{% block title %}{{ section.title }}{% endblock title %} {% block content %}

{{ section.title }}

diff --git a/templates/miniblog-page.html b/templates/miniblog-page.html index 9d75739..60084ce 100644 --- a/templates/miniblog-page.html +++ b/templates/miniblog-page.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %}{{ page.title }} - MyBlog{% endblock title %} +{% block title %}{{ page.title }}{% endblock title %} {% block content %}
-- 2.47.3