--- /dev/null
++++
+title = "gitweb!"
+date = 2026-06-01
++++
+
+So, yesterday, I basically spent a couple hours trying to set up gitweb on my server, after multiple failed attempts to get things like gitea, gitlab, and cgit to work. But gitweb actually is pretty feature-complete, so I'll just stick with it! I modified the css and some links, so I think it's personalized enough for me.
+
+<br>
+
+Also, I made a template for robotics standup meetings in typst! I got really bored during a discussion in robotics today (last meeting of the year (;´༎ຶД༎ຶ`)), and they were talking about organization and communication between subteams, so I just kind of had the thought to make a new little template, as I am going to be software lead next year (no [captain](https://nbatitlechase.com/wp-content/uploads/2021/06/PHOTO-Steph-Curry-Literally-Shooting-At-The-Moon.jpg) :( ). So first of all, I had to fix up the crappy ass logo that we *STILL* use on our official website, despite it being ~100x100px. So I basically just traced over it in PixiEditor, which I recently compiled from source with some troubles, turning it into an svg and higher res png. Now that I had the crisp lookin' logo, I just modified the touying simple theme to make a slide template for our team. Basically all I did was change the default colors and force an image to be overlaid on the top right, but it gets the job done. But now that I have my new gitweb frontend, I had to put it [there!](https://git.taranathan.com/)
--- /dev/null
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+ <meta charset="utf-8">
+ <title>gitweb! - 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">gitweb!</h1>
+ <p class="subtitle"><strong>2026-06-01</strong></p>
+ <div class="post-content"><p>So, yesterday, I basically spent a couple hours trying to set up gitweb on my server, after multiple failed attempts to get things like gitea, gitlab, and cgit to work. But gitweb actually is pretty feature-complete, so I’ll just stick with it! I modified the css and some links, so I think it’s personalized enough for me.</p>
+<br>
+<p>Also, I made a template for robotics standup meetings in typst! I got really bored during a discussion in robotics today (last meeting of the year (;´༎ຶД༎ຶ`)), and they were talking about organization and communication between subteams, so I just kind of had the thought to make a new little template, as I am going to be software lead next year (no <a rel="external" href="https://nbatitlechase.com/wp-content/uploads/2021/06/PHOTO-Steph-Curry-Literally-Shooting-At-The-Moon.jpg">captain</a> :( ). So first of all, I had to fix up the crappy ass logo that we <em>STILL</em> use on our official website, despite it being ~100x100px. So I basically just traced over it in PixiEditor, which I recently compiled from source with some troubles, turning it into an svg and higher res png. Now that I had the crisp lookin’ logo, I just modified the touying simple theme to make a slide template for our team. Basically all I did was change the default colors and force an image to be overlaid on the top right, but it gets the job done. But now that I have my new gitweb frontend, I had to put it <a rel="external" href="https://git.taranathan.com/">there!</a></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>