]> git.taranathan.com Git - blog.git/commitdiff
maybe this works?
authormoo <moogoesmeow123@gmail.com>
Mon, 1 Jun 2026 21:48:23 +0000 (14:48 -0700)
committermoo <moogoesmeow123@gmail.com>
Mon, 1 Jun 2026 21:48:23 +0000 (14:48 -0700)
12 files changed:
content/blog/test.md [deleted file]
content/miniblog/bigtest.md [deleted file]
content/miniblog/newtest.md [new file with mode: 0644]
content/miniblog/test-mo.md [deleted file]
justfile
public/blog/index.html
public/blog/test/index.html [deleted file]
public/miniblog/bigtest/index.html [deleted file]
public/miniblog/index.html
public/miniblog/newtest/index.html [new file with mode: 0644]
public/miniblog/test-mo/index.html [deleted file]
public/sitemap.xml

diff --git a/content/blog/test.md b/content/blog/test.md
deleted file mode 100644 (file)
index e03dc13..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-+++
-name = "test"
-date = 2026-06-01
-+++
diff --git a/content/miniblog/bigtest.md b/content/miniblog/bigtest.md
deleted file mode 100644 (file)
index a3ad3ea..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-+++
-name = "bigtest"
-date = 2026-06-01
-+++
-
-fun fu
-
-
-big big
diff --git a/content/miniblog/newtest.md b/content/miniblog/newtest.md
new file mode 100644 (file)
index 0000000..6180c03
--- /dev/null
@@ -0,0 +1,6 @@
++++
+title = "newtest"
+date = 2026-06-01
++++
+
+i think this might work
diff --git a/content/miniblog/test-mo.md b/content/miniblog/test-mo.md
deleted file mode 100644 (file)
index 10275bb..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-+++
-name = "test-mo"
-date = 2026-06-01
-+++
-
-testing more
index fdddd5a706f5748703ca900899edf889a23d9f1b..00be3401f2e11568adb35a4a3e5ad8a5343fe35b 100644 (file)
--- a/justfile
+++ b/justfile
@@ -21,3 +21,6 @@ deploy:
     git commit -a
     git push
     ssh root@taranathan.com 'cd /root/blog/ && git fetch && git reset --hard origin/main'
+
+deploy-raw:
+    ssh root@taranathan.com 'cd /root/blog/ && git fetch && git reset --hard origin/main'
index a68759a8980df75bff8dd37d81a51d6096fe016a..335081a73f5a7f3b192adfa89cf22ad537c1dffd 100644 (file)
         
       </li>
     
-      <li class="post-list-item">
-        <a href="https://taranathan.com/blog/test/"></a>
-        
-      </li>
-    
       <li class="post-list-item">
         <a href="https://taranathan.com/blog/first/">first post</a>
         
diff --git a/public/blog/test/index.html b/public/blog/test/index.html
deleted file mode 100644 (file)
index 522c8d0..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-  <meta charset="utf-8">
-  <title> - MyBlog</title>
-  <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
-  <link rel="stylesheet" href="https://taranathan.com/styles.css">
-</head>
-
-<body>
-  <div class="container">
-    <div class="kaomoji-sidebar kaomoji-left">
-      <div class="scroll-text" id="kaomoji-left"></div>
-    </div>
-
-    <main class="content">
-      <header class="header">
-        <h1 href="/">My Blog</h1>
-        <nav class="nav">
-          <a href="/">Home</a>
-          <a href="/blog">Blog</a>
-          <a href="/miniblog">Miniblog</a>
-          <a href="/boo" target="_blank">Fun</a>
-        </nav>
-      </header>
-
-      <section class="content-body">
-        
-  <article class="post">
-    <h1 class="title"></h1>
-    <p class="subtitle"><strong>2026-06-01</strong></p>
-    <div class="post-content"></div>
-  </article>
-
-      </section>
-    </main>
-
-    <div class="kaomoji-sidebar kaomoji-right">
-      <div class="scroll-text" id="kaomoji-right"></div>
-    </div>
-  </div>
-
-  <script>
-    // Smooth scrolling for internal links
-    document.querySelectorAll('nav a').forEach(anchor => {
-      anchor.addEventListener('click', function (e) {
-        const href = this.getAttribute('href');
-        if (href && href.startsWith('#')) {
-          e.preventDefault();
-          document.querySelector(href).scrollIntoView({ behavior: 'smooth' });
-        }
-      });
-    });
-
-    // Fetch kaomoji text if available
-    fetch('https://taranathan.com/kaomoji.txt').then(r => { if (r.ok) return r.text(); }).then(data => {
-      if (data) {
-        const l = document.getElementById('kaomoji-left');
-        const rgt = document.getElementById('kaomoji-right');
-        if (l) l.textContent = data;
-        if (rgt) rgt.textContent = data;
-      }
-    }).catch(()=>{});
-  </script>
-</body>
-
-</html>
diff --git a/public/miniblog/bigtest/index.html b/public/miniblog/bigtest/index.html
deleted file mode 100644 (file)
index 62b8a96..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-  <meta charset="utf-8">
-  <title> - MyBlog</title>
-  <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
-  <link rel="stylesheet" href="https://taranathan.com/styles.css">
-</head>
-
-<body>
-  <div class="container">
-    <div class="kaomoji-sidebar kaomoji-left">
-      <div class="scroll-text" id="kaomoji-left"></div>
-    </div>
-
-    <main class="content">
-      <header class="header">
-        <h1 href="/">My Blog</h1>
-        <nav class="nav">
-          <a href="/">Home</a>
-          <a href="/blog">Blog</a>
-          <a href="/miniblog">Miniblog</a>
-          <a href="/boo" target="_blank">Fun</a>
-        </nav>
-      </header>
-
-      <section class="content-body">
-        
-  <article class="post miniblog-post">
-    <h1 class="title"></h1>
-    <p class="subtitle"><strong>2026-06-01</strong></p>
-    <div class="post-content"><p>fun fu</p>
-<p>big big</p>
-</div>
-  </article>
-
-      </section>
-    </main>
-
-    <div class="kaomoji-sidebar kaomoji-right">
-      <div class="scroll-text" id="kaomoji-right"></div>
-    </div>
-  </div>
-
-  <script>
-    // Smooth scrolling for internal links
-    document.querySelectorAll('nav a').forEach(anchor => {
-      anchor.addEventListener('click', function (e) {
-        const href = this.getAttribute('href');
-        if (href && href.startsWith('#')) {
-          e.preventDefault();
-          document.querySelector(href).scrollIntoView({ behavior: 'smooth' });
-        }
-      });
-    });
-
-    // Fetch kaomoji text if available
-    fetch('https://taranathan.com/kaomoji.txt').then(r => { if (r.ok) return r.text(); }).then(data => {
-      if (data) {
-        const l = document.getElementById('kaomoji-left');
-        const rgt = document.getElementById('kaomoji-right');
-        if (l) l.textContent = data;
-        if (rgt) rgt.textContent = data;
-      }
-    }).catch(()=>{});
-  </script>
-</body>
-
-</html>
index 9bee83aa63cd18a5d4cf8662808709404cdeb795..a4d5cb8c8154f5caa8b265f823c0c064f5c13948 100644 (file)
   <ul class="post-list">
     
       <li class="post-list-item">
-        <a href="https://taranathan.com/miniblog/bigtest/"></a>
-        
-      </li>
-    
-      <li class="post-list-item">
-        <a href="https://taranathan.com/miniblog/test-mo/"></a>
+        <a href="https://taranathan.com/miniblog/newtest/">newtest</a>
         
       </li>
     
diff --git a/public/miniblog/newtest/index.html b/public/miniblog/newtest/index.html
new file mode 100644 (file)
index 0000000..f73ca63
--- /dev/null
@@ -0,0 +1,69 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="utf-8">
+  <title>newtest - MyBlog</title>
+  <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
+  <link rel="stylesheet" href="https://taranathan.com/styles.css">
+</head>
+
+<body>
+  <div class="container">
+    <div class="kaomoji-sidebar kaomoji-left">
+      <div class="scroll-text" id="kaomoji-left"></div>
+    </div>
+
+    <main class="content">
+      <header class="header">
+        <h1 href="/">My Blog</h1>
+        <nav class="nav">
+          <a href="/">Home</a>
+          <a href="/blog">Blog</a>
+          <a href="/miniblog">Miniblog</a>
+          <a href="/boo" target="_blank">Fun</a>
+        </nav>
+      </header>
+
+      <section class="content-body">
+        
+  <article class="post miniblog-post">
+    <h1 class="title">newtest</h1>
+    <p class="subtitle"><strong>2026-06-01</strong></p>
+    <div class="post-content"><p>i think this might work</p>
+</div>
+  </article>
+
+      </section>
+    </main>
+
+    <div class="kaomoji-sidebar kaomoji-right">
+      <div class="scroll-text" id="kaomoji-right"></div>
+    </div>
+  </div>
+
+  <script>
+    // Smooth scrolling for internal links
+    document.querySelectorAll('nav a').forEach(anchor => {
+      anchor.addEventListener('click', function (e) {
+        const href = this.getAttribute('href');
+        if (href && href.startsWith('#')) {
+          e.preventDefault();
+          document.querySelector(href).scrollIntoView({ behavior: 'smooth' });
+        }
+      });
+    });
+
+    // Fetch kaomoji text if available
+    fetch('https://taranathan.com/kaomoji.txt').then(r => { if (r.ok) return r.text(); }).then(data => {
+      if (data) {
+        const l = document.getElementById('kaomoji-left');
+        const rgt = document.getElementById('kaomoji-right');
+        if (l) l.textContent = data;
+        if (rgt) rgt.textContent = data;
+      }
+    }).catch(()=>{});
+  </script>
+</body>
+
+</html>
diff --git a/public/miniblog/test-mo/index.html b/public/miniblog/test-mo/index.html
deleted file mode 100644 (file)
index d1d6398..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
-  <meta charset="utf-8">
-  <title> - MyBlog</title>
-  <link rel="icon" type="image/x-icon" href="https://taranathan.com/favicon.ico">
-  <link rel="stylesheet" href="https://taranathan.com/styles.css">
-</head>
-
-<body>
-  <div class="container">
-    <div class="kaomoji-sidebar kaomoji-left">
-      <div class="scroll-text" id="kaomoji-left"></div>
-    </div>
-
-    <main class="content">
-      <header class="header">
-        <h1 href="/">My Blog</h1>
-        <nav class="nav">
-          <a href="/">Home</a>
-          <a href="/blog">Blog</a>
-          <a href="/miniblog">Miniblog</a>
-          <a href="/boo" target="_blank">Fun</a>
-        </nav>
-      </header>
-
-      <section class="content-body">
-        
-  <article class="post miniblog-post">
-    <h1 class="title"></h1>
-    <p class="subtitle"><strong>2026-06-01</strong></p>
-    <div class="post-content"><p>testing more</p>
-</div>
-  </article>
-
-      </section>
-    </main>
-
-    <div class="kaomoji-sidebar kaomoji-right">
-      <div class="scroll-text" id="kaomoji-right"></div>
-    </div>
-  </div>
-
-  <script>
-    // Smooth scrolling for internal links
-    document.querySelectorAll('nav a').forEach(anchor => {
-      anchor.addEventListener('click', function (e) {
-        const href = this.getAttribute('href');
-        if (href && href.startsWith('#')) {
-          e.preventDefault();
-          document.querySelector(href).scrollIntoView({ behavior: 'smooth' });
-        }
-      });
-    });
-
-    // Fetch kaomoji text if available
-    fetch('https://taranathan.com/kaomoji.txt').then(r => { if (r.ok) return r.text(); }).then(data => {
-      if (data) {
-        const l = document.getElementById('kaomoji-left');
-        const rgt = document.getElementById('kaomoji-right');
-        if (l) l.textContent = data;
-        if (rgt) rgt.textContent = data;
-      }
-    }).catch(()=>{});
-  </script>
-</body>
-
-</html>
index cef488c0a669bda060eec573ab59eb23b89793d5..15a2f750eca9a63dd942a8eb688faf25f7a12603 100644 (file)
         <loc>https://taranathan.com/blog/second/</loc>
         <lastmod>2026-06-01</lastmod>
     </url>
-    <url>
-        <loc>https://taranathan.com/blog/test/</loc>
-        <lastmod>2026-06-01</lastmod>
-    </url>
     <url>
         <loc>https://taranathan.com/miniblog/</loc>
     </url>
-    <url>
-        <loc>https://taranathan.com/miniblog/bigtest/</loc>
-        <lastmod>2026-06-01</lastmod>
-    </url>
     <url>
         <loc>https://taranathan.com/miniblog/firstmini/</loc>
         <lastmod>2026-04-16</lastmod>
     </url>
     <url>
-        <loc>https://taranathan.com/miniblog/test-mo/</loc>
+        <loc>https://taranathan.com/miniblog/newtest/</loc>
         <lastmod>2026-06-01</lastmod>
     </url>
 </urlset>