]> git.taranathan.com Git - blog.git/commitdiff
stuff
authormoo <moogoesmeow123@gmail.com>
Tue, 16 Jun 2026 16:33:13 +0000 (09:33 -0700)
committermoo <moogoesmeow123@gmail.com>
Tue, 16 Jun 2026 16:33:13 +0000 (09:33 -0700)
12 files changed:
justfile
public/blog/first/index.html
public/blog/gleam/index.html
public/blog/index.html
public/blog/second/index.html
public/miniblog/firstmini/index.html
public/miniblog/gitweb/index.html
public/miniblog/index.html
templates/base.html
templates/blog-page.html
templates/blog.html
templates/miniblog-page.html

index 609c77279f6b3f5f78004af1ffd329383927a7af..6f35ece491ca4be21d952bcb69d8768b09f0c531 100644 (file)
--- 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'
index 4594a81b2d842df24485c610281be9aae72d39e0..50ff8ddf6fadbb506c04c9fcd9e4244e72007b62 100644 (file)
@@ -3,7 +3,7 @@
 
 <head>
   <meta charset="utf-8">
-  <title>first post - MyBlog</title>
+  <title>first post</title>
   <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
   <link rel="stylesheet" href="https://taranathan.com/styles.css">
 </head>
index d034d6e7a7a88644b1700088da22e50222c5e5d4..bb47f43ed3628ee51e4133ce7fefb6ff32b2b85f 100644 (file)
@@ -3,7 +3,7 @@
 
 <head>
   <meta charset="utf-8">
-  <title>gleam - MyBlog</title>
+  <title>gleam</title>
   <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
   <link rel="stylesheet" href="https://taranathan.com/styles.css">
 </head>
index f71db53b7b24e078e2fe74fa483cf704940e788f..feb3c2c80adebeb9b9cf0a96d15961988c92681c 100644 (file)
@@ -3,7 +3,7 @@
 
 <head>
   <meta charset="utf-8">
-  <title>Blog posts - MyBlog</title>
+  <title>Blog posts</title>
   <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
   <link rel="stylesheet" href="https://taranathan.com/styles.css">
 </head>
index 1e38aff5fb0de0da6edc8305fd597d565a087549..d919b098d572d61a2e34703503a604802d7ad6e4 100644 (file)
@@ -3,7 +3,7 @@
 
 <head>
   <meta charset="utf-8">
-  <title>second post - MyBlog</title>
+  <title>second post</title>
   <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
   <link rel="stylesheet" href="https://taranathan.com/styles.css">
 </head>
index e7946d47e66dcf0e28ef25b776d1e3bf0e81b21a..b1381cf74ed1eab6b95fbf353123b6b7129d76ec 100644 (file)
@@ -3,7 +3,7 @@
 
 <head>
   <meta charset="utf-8">
-  <title>first mini - MyBlog</title>
+  <title>first mini</title>
   <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
   <link rel="stylesheet" href="https://taranathan.com/styles.css">
 </head>
index 06ccfdaf033c1407b6f04ca97b832cdbaf2a610c..872eca2c670f620448adebd6f352e312c03bc1e5 100644 (file)
@@ -3,7 +3,7 @@
 
 <head>
   <meta charset="utf-8">
-  <title>gitweb! - MyBlog</title>
+  <title>gitweb!</title>
   <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
   <link rel="stylesheet" href="https://taranathan.com/styles.css">
 </head>
index 57d5bccd7b705258fdcbb50cd2310adc9526ee1b..00d2c590ecc1863208b9ad3c0e1aaf991058ed02 100644 (file)
@@ -3,7 +3,7 @@
 
 <head>
   <meta charset="utf-8">
-  <title>Miniblog&#x2F;journal posts - MyBlog</title>
+  <title>Miniblog&#x2F;journal posts</title>
   <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
   <link rel="stylesheet" href="https://taranathan.com/styles.css">
 </head>
index 28d35f4eca75b74b1a585587a441d62a45cc88b9..69dc71611aa7a517cf9029b4c3326014bf894737 100644 (file)
@@ -3,7 +3,7 @@
 
 <head>
   <meta charset="utf-8">
-  <title>{% block title %}MyBlog{% endblock title %}</title>
+  <title>{% block title %}Blog{% endblock title %}</title>
   <link rel="icon" type="image/x-icon" href="{{ get_url(path='favicon.ico') }}">
   <link rel="stylesheet" href="{{ get_url(path='styles.css') }}">
 </head>
index cb5e020605b8edbb9f371e88de377ef2f759a31b..8db0ce955e5c7779040295d8c3ad57785f02c713 100644 (file)
@@ -1,6 +1,6 @@
 {% extends "base.html" %}
 
-{% block title %}{{ page.title }} - MyBlog{% endblock title %}
+{% block title %}{{ page.title }}{% endblock title %}
 
 {% block content %}
   <article class="post">
index 675dd0c6a9e538f168ed2659b6e4ae1387512430..84a5d5b5d2783bfe6685fe3834cf640ff7638380 100644 (file)
@@ -1,6 +1,6 @@
 {% extends "base.html" %}
 
-{% block title %}{{ section.title }} - MyBlog{% endblock title %}
+{% block title %}{{ section.title }}{% endblock title %}
 
 {% block content %}
   <h2 class="section-title">{{ section.title }}</h2>
index 9d75739f77bf8ddf98fbdc3469672cce3314ace7..60084ce1cedf5e5eae512ab93efa0159b22e8d8a 100644 (file)
@@ -1,6 +1,6 @@
 {% extends "base.html" %}
 
-{% block title %}{{ page.title }} - MyBlog{% endblock title %}
+{% block title %}{{ page.title }}{% endblock title %}
 
 {% block content %}
   <article class="post miniblog-post">