fix: theme a bit

This commit is contained in:
SauravDhakal
2026-04-01 09:14:17 +05:45
parent df6f488ccd
commit 38baeb86e8
21 changed files with 204 additions and 216 deletions

View File

@@ -50,63 +50,118 @@
}
:root[data-theme="dark"] {
--theme: #181818;
--entry: rgb(46, 46, 51);
--primary: #fbf1c7;
--secondary: #ebdbb2;
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(151, 51, 51);
--theme: #1d2021;
--entry: #282828;
--primary: #ebdbb2;
--secondary: #a89984;
--tertiary: #3c3836;
--content: #ebdbb2;
--code-block-bg: #282828;
--code-bg: #3c3836;
--border: #3c3836;
color-scheme: dark;
--post-entry-bg: #181818; /* bg1 */
--post-entry-bg: #282828;
--post-entry-fg: #ebdbb2;
--green: #b8bb26;
--greenl: #8ec07c;
}
body {
font-family: "Space Grotesk", monospace;
}
nav #menu span {
padding: 0px 2px;
text-decoration: underline;
text-decoration-thickness: 2px;
text-decoration-color: var(--green);
}
/* *
* NAV SECTION
* UNIVERSAL HOVER ANIMATION (Fill-up Effect)
* Target: Nav spans, main links (except entries), social links, and share icons.
* */
nav #menu a span {
position: relative;
text-decoration: none !important;
color: inherit;
transition: color 0.3s ease;
z-index: 1;
display: inline-block;
padding: 0 8px; /* Reduced vertical padding */
}
nav #menu span:hover {
main a:not(.entry-link, .anchor),
.social-icons a,
.share-buttons a,
.note-item a {
position: relative;
text-decoration: none !important;
color: inherit;
transition: color 0.3s ease;
z-index: 1;
display: inline-block;
}
/* Note items are full-width flex containers */
.note-item a {
display: flex;
width: 100%;
padding: 8px 12px;
margin: 0 -12px; /* Offset padding for full-row effect */
}
/* The fill background */
nav #menu a span::before,
main a:not(.entry-link, .anchor)::before,
.social-icons a::before,
.share-buttons a::before,
.note-item a::before {
content: "";
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 2px; /* Static underline state */
background-color: var(--green);
color: white;
z-index: -1;
transition: height 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
nav #menu .active {
border: 0px;
color: var(--green);
text-decoration: underline;
text-decoration-thickness: 2px;
text-decoration-color: var(--green);
/* Notes list starts with 0 height to stay clean */
.note-item a::before,
.share-buttons a::before {
height: 0;
}
/* *
* MAIN SECTION
* */
main a {
text-decoration: underline;
text-decoration-thickness: 2px;
text-decoration-color: var(--green);
/* Hover state: Fill up the background */
nav #menu a:hover span::before,
main a:hover:not(.entry-link, .anchor)::before,
.social-icons a:hover::before,
.share-buttons a:hover::before,
.note-item a:hover::before {
height: 100%;
}
main a:hover:not(.entry-link) {
background-color: var(--green);
color: white;
/* CONTRAST FIX: Switch text/icon color on hover */
nav #menu a:hover span,
main a:hover:not(.entry-link, .anchor),
.social-icons a:hover,
.share-buttons a:hover,
.note-item a:hover .note-title,
.note-item a:hover .note-date {
color: var(--theme) !important;
}
/* Icon specific color switch */
.social-icons a:hover svg,
.share-buttons a:hover svg {
fill: var(--theme) !important;
stroke: var(--theme) !important;
}
/* Active Nav State - remain thick underline */
nav #menu .active span::before {
height: 4px;
}
nav #menu .active a:hover span::before {
height: 100%;
}
main h1 {
@@ -117,6 +172,35 @@ main h1 {
.toc,
.post-tags a {
border: 0px;
background: transparent;
}
.post-tags a {
background: var(--tertiary);
color: var(--primary);
padding: 4px 12px;
border-radius: var(--radius);
transition: all 0.3s ease;
}
.post-tags a:hover {
background: var(--green);
color: var(--theme);
transform: translateY(-2px);
}
.share-buttons {
margin-top: 40px;
padding: 20px 0;
border-top: 1px solid var(--tertiary);
display: flex;
justify-content: center;
gap: 12px;
}
.share-buttons a {
padding: 10px;
border-radius: var(--radius);
}
.anchor {
@@ -134,10 +218,15 @@ main h1 {
/* } */
main .post-entry {
border: 0px;
border: 1px solid var(--tertiary);
background-color: var(--post-entry-bg);
color: var(--post-entry-fg);
border: 2px solid #383838;
transition: transform 0.2s ease, border-color 0.2s ease;
}
main .post-entry:hover {
transform: translateY(-2px);
border-color: var(--green);
}
/* *
@@ -158,18 +247,9 @@ main .post-entry {
border-bottom: none;
}
.note-item a {
display: flex;
justify-content: space-between;
align-items: baseline;
text-decoration: none;
gap: 16px;
}
.note-item a:hover .note-title {
text-decoration: underline;
text-decoration-color: var(--green);
text-decoration-thickness: 2px;
.note-item a:hover .note-title,
.note-item a:hover .note-date {
color: var(--theme) !important;
}
.note-title {
@@ -186,7 +266,51 @@ main .post-entry {
.note-summary {
margin: 4px 0 0 0;
font-size: 0.9rem;
font-size: 0.96rem;
color: var(--secondary);
line-height: 1.4;
line-height: 1.5;
}
/* *
* POST CONTENT SPACINGS
* */
.post-content {
font-size: 1.1rem;
line-height: 1.7;
color: var(--primary);
}
.post-content p,
.post-content ol,
.post-content ul,
.post-content dl {
margin-bottom: 1.6em;
}
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
margin-top: 1.8em;
margin-bottom: 0.8em;
color: var(--green);
}
.post-content blockquote {
margin: 2em 0;
padding: 0.5em 1.5em;
border-left: 4px solid var(--green);
background-color: var(--entry);
font-style: italic;
color: var(--secondary);
}
.post-content code {
background-color: var(--tertiary);
color: var(--primary);
border-radius: 4px;
}
.post-content pre code {
background-color: var(--entry) !important;
}

View File

@@ -0,0 +1,26 @@
---
title: "The Art of the Digital Garden"
date: 2026-04-01T08:55:00+05:45
draft: false
tags: ["philosophy", "gruvbox", "hugo"]
description: "Exploring the concept of a digital garden and how a refined Gruvbox theme enhances the experience."
---
Welcome to my digital garden. This is a place where I share my thoughts, projects, and lessons learned along the way. Unlike a traditional blog, a digital garden is always growing and evolving.
### Why Gruvbox?
Gruvbox is more than just a color scheme; it's a philosophy of contrast and harmony. By using the "Hard" contrast variant, we achieve a focus that is both easy on the eyes and aesthetically pleasing.
```javascript
const theme = "Gruvbox Dark Hard";
console.log(`Current theme: ${theme}`);
```
### The Beauty of Hugo
Hugo allows for lightning-fast build times and complete control over the structure of our content. Paired with a minimal theme like PaperMod, it provides the perfect canvas for technical writing.
> "A garden is never finished."
I hope you enjoy exploring these notes and posts as much as I enjoy writing them.

View File

@@ -1,2 +0,0 @@
<!doctype html><html lang=en dir=auto data-theme=dark><head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name=robots content="index, follow"><title>404 Page not found | Saurav Dhakal</title><meta name=keywords content><meta name=description content="A personal blog"><meta name=author content="saurav"><link rel=canonical href=//localhost:1313/404.html><link crossorigin=anonymous href=./assets/css/stylesheet.f3b5a353c674b5e6b6989a6ec07a987e4eec46ddc105399d3b2df9cb53eaaa1f.css integrity="sha256-87WjU8Z0tea2mJpuwHqYfk7sRt3BBTmdOy35y1Pqqh8=" rel="preload stylesheet" as=style><link rel=icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=16x16 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=32x32 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=apple-touch-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=mask-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><meta name=theme-color content="#2e2e33"><meta name=msapplication-TileColor content="#2e2e33"><link rel=alternate hreflang=en href=//localhost:1313/404.html><noscript><style>#theme-toggle,.top-link{display:none}</style></noscript><script async src="https://www.googletagmanager.com/gtag/js?id=G-V0CXG8ZEG2"></script><script>var doNotTrack=!1,dnt=navigator.doNotTrack||window.doNotTrack||navigator.msDoNotTrack,doNotTrack=dnt=="1"||dnt=="yes";if(!doNotTrack){window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date),gtag("config","G-V0CXG8ZEG2")}</script><meta property="og:url" content="//localhost:1313/404.html"><meta property="og:site_name" content="Saurav Dhakal"><meta property="og:title" content="404 Page not found"><meta property="og:description" content="A personal blog"><meta property="og:locale" content="en-us"><meta property="og:type" content="website"><meta name=twitter:card content="summary"><meta name=twitter:title content="404 Page not found"><meta name=twitter:description content="A personal blog"></head><body class=list id=top><header class=header><nav class=nav><div class=logo><a href=//localhost:1313/ accesskey=h title="SauravDhakal (Alt + H)">SauravDhakal</a><div class=logo-switches></div></div><ul id=menu><li><a href=//localhost:1313/posts/ title=Posts><span>Posts</span></a></li><li><a href=//localhost:1313/notes/ title=Notes><span>Notes</span></a></li><li><a href=//localhost:1313/tags/ title=Tags><span>Tags</span></a></li><li><a href=//localhost:1313/search/ title="Search (Alt + /)" accesskey=/><span>Search</span></a></li></ul></nav></header><main class=main><div class=not-found>404</div></main><footer class=footer><span>Copyright &copy; 2026 SauravDhakal</span></footer><a href=#top aria-label="go to top" title="Go to Top (Alt + G)" class=top-link id=top-link accesskey=g><svg viewBox="0 0 12 6" fill="currentColor"><path d="M12 6H0l6-6z"/></svg>
</a><script>let menu=document.getElementById("menu");if(menu){const e=localStorage.getItem("menu-scroll-position");e&&(menu.scrollLeft=parseInt(e,10)),menu.onscroll=function(){localStorage.setItem("menu-scroll-position",menu.scrollLeft)}}document.querySelectorAll('a[href^="#"]').forEach(e=>{e.addEventListener("click",function(e){e.preventDefault();var t=this.getAttribute("href").substr(1);window.matchMedia("(prefers-reduced-motion: reduce)").matches?document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView():document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView({behavior:"smooth"}),t==="top"?history.replaceState(null,null," "):history.pushState(null,null,`#${t}`)})})</script><script>var mybutton=document.getElementById("top-link");window.onscroll=function(){document.body.scrollTop>800||document.documentElement.scrollTop>800?(mybutton.style.visibility="visible",mybutton.style.opacity="1"):(mybutton.style.visibility="hidden",mybutton.style.opacity="0")}</script></body></html>

View File

@@ -1,2 +0,0 @@
<!doctype html><html lang=en dir=auto data-theme=dark><head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name=robots content="index, follow"><title>Categories | Saurav Dhakal</title><meta name=keywords content><meta name=description content="A personal blog"><meta name=author content="saurav"><link rel=canonical href=//localhost:1313/categories/><link crossorigin=anonymous href=../assets/css/stylesheet.f3b5a353c674b5e6b6989a6ec07a987e4eec46ddc105399d3b2df9cb53eaaa1f.css integrity="sha256-87WjU8Z0tea2mJpuwHqYfk7sRt3BBTmdOy35y1Pqqh8=" rel="preload stylesheet" as=style><link rel=icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=16x16 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=32x32 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=apple-touch-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=mask-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><meta name=theme-color content="#2e2e33"><meta name=msapplication-TileColor content="#2e2e33"><link rel=alternate type=application/rss+xml href=//localhost:1313/categories/index.xml title=rss><link rel=alternate hreflang=en href=//localhost:1313/categories/><noscript><style>#theme-toggle,.top-link{display:none}</style></noscript><script async src="https://www.googletagmanager.com/gtag/js?id=G-V0CXG8ZEG2"></script><script>var doNotTrack=!1,dnt=navigator.doNotTrack||window.doNotTrack||navigator.msDoNotTrack,doNotTrack=dnt=="1"||dnt=="yes";if(!doNotTrack){window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date),gtag("config","G-V0CXG8ZEG2")}</script><meta property="og:url" content="//localhost:1313/categories/"><meta property="og:site_name" content="Saurav Dhakal"><meta property="og:title" content="Categories"><meta property="og:description" content="A personal blog"><meta property="og:locale" content="en-us"><meta property="og:type" content="website"><meta name=twitter:card content="summary"><meta name=twitter:title content="Categories"><meta name=twitter:description content="A personal blog"></head><body class=list id=top><header class=header><nav class=nav><div class=logo><a href=//localhost:1313/ accesskey=h title="SauravDhakal (Alt + H)">SauravDhakal</a><div class=logo-switches></div></div><ul id=menu><li><a href=//localhost:1313/posts/ title=Posts><span>Posts</span></a></li><li><a href=//localhost:1313/notes/ title=Notes><span>Notes</span></a></li><li><a href=//localhost:1313/tags/ title=Tags><span>Tags</span></a></li><li><a href=//localhost:1313/search/ title="Search (Alt + /)" accesskey=/><span>Search</span></a></li></ul></nav></header><main class=main><header class=page-header><h1>Categories</h1></header><ul class=terms-tags></ul></main><footer class=footer><span>Copyright &copy; 2026 SauravDhakal</span></footer><a href=#top aria-label="go to top" title="Go to Top (Alt + G)" class=top-link id=top-link accesskey=g><svg viewBox="0 0 12 6" fill="currentColor"><path d="M12 6H0l6-6z"/></svg>
</a><script>let menu=document.getElementById("menu");if(menu){const e=localStorage.getItem("menu-scroll-position");e&&(menu.scrollLeft=parseInt(e,10)),menu.onscroll=function(){localStorage.setItem("menu-scroll-position",menu.scrollLeft)}}document.querySelectorAll('a[href^="#"]').forEach(e=>{e.addEventListener("click",function(e){e.preventDefault();var t=this.getAttribute("href").substr(1);window.matchMedia("(prefers-reduced-motion: reduce)").matches?document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView():document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView({behavior:"smooth"}),t==="top"?history.replaceState(null,null," "):history.pushState(null,null,`#${t}`)})})</script><script>var mybutton=document.getElementById("top-link");window.onscroll=function(){document.body.scrollTop>800||document.documentElement.scrollTop>800?(mybutton.style.visibility="visible",mybutton.style.opacity="1"):(mybutton.style.visibility="hidden",mybutton.style.opacity="0")}</script></body></html>

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Categories on Saurav Dhakal</title>
<link>//localhost:1313/categories/</link>
<description>Recent content in Categories on Saurav Dhakal</description>
<generator>Hugo -- 0.158.0</generator>
<language>en-us</language>
<copyright>SauravDhakal</copyright>
<atom:link href="//localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@@ -1,5 +0,0 @@
<!doctype html><html lang=en dir=auto data-theme=dark><head><meta name=generator content="Hugo 0.158.0"><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name=robots content="index, follow"><title>Saurav Dhakal</title><meta name=keywords content="Blog,Portfolio,SauravDhakal,Saurav,Dhakal,Backend"><meta name=description content="A personal blog"><meta name=author content="saurav"><link rel=canonical href=//localhost:1313/><link crossorigin=anonymous href=./assets/css/stylesheet.f3b5a353c674b5e6b6989a6ec07a987e4eec46ddc105399d3b2df9cb53eaaa1f.css integrity="sha256-87WjU8Z0tea2mJpuwHqYfk7sRt3BBTmdOy35y1Pqqh8=" rel="preload stylesheet" as=style><link rel=icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=16x16 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=32x32 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=apple-touch-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=mask-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><meta name=theme-color content="#2e2e33"><meta name=msapplication-TileColor content="#2e2e33"><link rel=alternate type=application/rss+xml href=//localhost:1313/index.xml title=rss><link rel=alternate type=application/json href=//localhost:1313/index.json title=json><link rel=alternate hreflang=en href=//localhost:1313/><noscript><style>#theme-toggle,.top-link{display:none}</style></noscript><script async src="https://www.googletagmanager.com/gtag/js?id=G-V0CXG8ZEG2"></script><script>var doNotTrack=!1,dnt=navigator.doNotTrack||window.doNotTrack||navigator.msDoNotTrack,doNotTrack=dnt=="1"||dnt=="yes";if(!doNotTrack){window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date),gtag("config","G-V0CXG8ZEG2")}</script><meta property="og:url" content="//localhost:1313/"><meta property="og:site_name" content="Saurav Dhakal"><meta property="og:title" content="Saurav Dhakal"><meta property="og:description" content="A personal blog"><meta property="og:locale" content="en-us"><meta property="og:type" content="website"><meta name=twitter:card content="summary"><meta name=twitter:title content="Saurav Dhakal"><meta name=twitter:description content="A personal blog"><script type=application/ld+json>{"@context":"https://schema.org","@type":"Organization","name":"Saurav Dhakal","url":"//localhost:1313/","description":"A personal blog","logo":"//localhost:1313/%3Clink%20/%20abs%20url%3E","sameAs":["https://github.com/sauravdhakal12","https://www.linkedin.com/in/saurav-dhakal-9a8b27220/","https://x.com/s0x1495"]}</script></head><body class=list id=top><header class=header><nav class=nav><div class=logo><a href=//localhost:1313/ accesskey=h title="SauravDhakal (Alt + H)">SauravDhakal</a><div class=logo-switches></div></div><ul id=menu><li><a href=//localhost:1313/posts/ title=Posts><span>Posts</span></a></li><li><a href=//localhost:1313/notes/ title=Notes><span>Notes</span></a></li><li><a href=//localhost:1313/tags/ title=Tags><span>Tags</span></a></li><li><a href=//localhost:1313/search/ title="Search (Alt + /)" accesskey=/><span>Search</span></a></li></ul></nav></header><main class=main><article class="first-entry home-info"><header class=entry-header><h1>Hi there 👋, Im Saurav!</h1></header><div class=entry-content>Im a software engineer who enjoys building thoughtful systems and learning how things really work.<br><br>This is my digital garden - notes, projects, and lessons along the way.<br><br>Checkout my <a href=files/CV.pdf>CV</a> for my works and projects.</div><footer class=entry-footer><div class=social-icons><a href=https://github.com/sauravdhakal12 target=_blank rel="noopener noreferrer me" title=Github><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37.0 00-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44.0 0020 4.77 5.07 5.07.0 0019.91 1S18.73.65 16 2.48a13.38 13.38.0 00-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07.0 005 4.77 5.44 5.44.0 003.5 8.55c0 5.42 3.3 6.61 6.44 7A3.37 3.37.0 009 18.13V22"/></svg>
</a><a href=https://www.linkedin.com/in/saurav-dhakal-9a8b27220/ target=_blank rel="noopener noreferrer me" title=Linkedin><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6z"/><rect x="2" y="9" width="4" height="12"/><circle cx="4" cy="4" r="2"/></svg>
</a><a href=https://x.com/s0x1495 target=_blank rel="noopener noreferrer me" title=X><svg viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg></a></div></footer></article><article class=post-entry><header class=entry-header><h2 class=entry-hint-parent>Sample Note</h2></header><div class=entry-content><p>This is a sample note. Notes are meant to be short, quick thoughts or TILs (Today I Learned).
Delete this file and add your own notes here!</p></div><footer class=entry-footer><span title='2025-08-20 00:00:00 +0000 UTC'>August 20, 2025</span>&nbsp;·&nbsp;<span>1 min</span>&nbsp;·&nbsp;<span>27 words</span>&nbsp;·&nbsp;<span>saurav</span></footer><a class=entry-link aria-label="post link to Sample Note" href=//localhost:1313/notes/demo/></a></article></main><footer class=footer><span>Copyright &copy; 2026 SauravDhakal</span></footer><a href=#top aria-label="go to top" title="Go to Top (Alt + G)" class=top-link id=top-link accesskey=g><svg viewBox="0 0 12 6" fill="currentColor"><path d="M12 6H0l6-6z"/></svg>
</a><script>let menu=document.getElementById("menu");if(menu){const e=localStorage.getItem("menu-scroll-position");e&&(menu.scrollLeft=parseInt(e,10)),menu.onscroll=function(){localStorage.setItem("menu-scroll-position",menu.scrollLeft)}}document.querySelectorAll('a[href^="#"]').forEach(e=>{e.addEventListener("click",function(e){e.preventDefault();var t=this.getAttribute("href").substr(1);window.matchMedia("(prefers-reduced-motion: reduce)").matches?document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView():document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView({behavior:"smooth"}),t==="top"?history.replaceState(null,null," "):history.pushState(null,null,`#${t}`)})})</script><script>var mybutton=document.getElementById("top-link");window.onscroll=function(){document.body.scrollTop>800||document.documentElement.scrollTop>800?(mybutton.style.visibility="visible",mybutton.style.opacity="1"):(mybutton.style.visibility="hidden",mybutton.style.opacity="0")}</script></body></html>

View File

@@ -1 +0,0 @@
[{"content":"This is a sample note. Notes are meant to be short, quick thoughts or TILs (Today I Learned).\nDelete this file and add your own notes here!\n","permalink":"//localhost:1313/notes/demo/","summary":"\u003cp\u003eThis is a sample note. Notes are meant to be short, quick thoughts or TILs (Today I Learned).\u003c/p\u003e\n\u003cp\u003eDelete this file and add your own notes here!\u003c/p\u003e","title":"Sample Note"}]

View File

@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Saurav Dhakal</title>
<link>//localhost:1313/</link>
<description>Recent content on Saurav Dhakal</description>
<generator>Hugo -- 0.158.0</generator>
<language>en-us</language>
<copyright>SauravDhakal</copyright>
<lastBuildDate>Wed, 20 Aug 2025 00:00:00 +0000</lastBuildDate>
<atom:link href="//localhost:1313/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Sample Note</title>
<link>//localhost:1313/notes/demo/</link>
<pubDate>Wed, 20 Aug 2025 00:00:00 +0000</pubDate>
<guid>//localhost:1313/notes/demo/</guid>
<description>&lt;p&gt;This is a sample note. Notes are meant to be short, quick thoughts or TILs (Today I Learned).&lt;/p&gt;
&lt;p&gt;Delete this file and add your own notes here!&lt;/p&gt;</description>
</item>
</channel>
</rss>

File diff suppressed because one or more lines are too long

View File

@@ -1,4 +0,0 @@
<!doctype html><html lang=en dir=auto data-theme=dark><head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name=robots content="index, follow"><title>Notes | Saurav Dhakal</title><meta name=keywords content><meta name=description content="Quick notes, TILs, and short thoughts"><meta name=author content="saurav"><link rel=canonical href=//localhost:1313/notes/><link crossorigin=anonymous href=../assets/css/stylesheet.f3b5a353c674b5e6b6989a6ec07a987e4eec46ddc105399d3b2df9cb53eaaa1f.css integrity="sha256-87WjU8Z0tea2mJpuwHqYfk7sRt3BBTmdOy35y1Pqqh8=" rel="preload stylesheet" as=style><link rel=icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=16x16 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=32x32 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=apple-touch-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=mask-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><meta name=theme-color content="#2e2e33"><meta name=msapplication-TileColor content="#2e2e33"><link rel=alternate type=application/rss+xml href=//localhost:1313/notes/index.xml title=rss><link rel=alternate hreflang=en href=//localhost:1313/notes/><noscript><style>#theme-toggle,.top-link{display:none}</style></noscript><script async src="https://www.googletagmanager.com/gtag/js?id=G-V0CXG8ZEG2"></script><script>var doNotTrack=!1,dnt=navigator.doNotTrack||window.doNotTrack||navigator.msDoNotTrack,doNotTrack=dnt=="1"||dnt=="yes";if(!doNotTrack){window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date),gtag("config","G-V0CXG8ZEG2")}</script><meta property="og:url" content="//localhost:1313/notes/"><meta property="og:site_name" content="Saurav Dhakal"><meta property="og:title" content="Notes"><meta property="og:description" content="Quick notes, TILs, and short thoughts"><meta property="og:locale" content="en-us"><meta property="og:type" content="website"><meta name=twitter:card content="summary"><meta name=twitter:title content="Notes"><meta name=twitter:description content="Quick notes, TILs, and short thoughts"><script type=application/ld+json>{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Notes","item":"//localhost:1313/notes/"}]}</script></head><body class=list id=top><header class=header><nav class=nav><div class=logo><a href=//localhost:1313/ accesskey=h title="SauravDhakal (Alt + H)">SauravDhakal</a><div class=logo-switches></div></div><ul id=menu><li><a href=//localhost:1313/posts/ title=Posts><span>Posts</span></a></li><li><a href=//localhost:1313/notes/ title=Notes><span class=active>Notes</span></a></li><li><a href=//localhost:1313/tags/ title=Tags><span>Tags</span></a></li><li><a href=//localhost:1313/search/ title="Search (Alt + /)" accesskey=/><span>Search</span></a></li></ul></nav></header><main class=main><header class=page-header><h1>Notes</h1><div class=post-description>Quick notes, TILs, and short thoughts</div></header><div id=searchResults class=post-list></div><ul class=notes-list><li class=note-item><a href=//localhost:1313/notes/demo/><span class=note-title>Sample Note</span>
<span class=note-date>Aug 20, 2025</span></a><p class=note-summary>This is a sample note. Notes are meant to be short, quick thoughts or TILs (Today I Learned).
Delete …</p></li></ul></main><footer class=footer><span>Copyright &copy; 2026 SauravDhakal</span></footer><a href=#top aria-label="go to top" title="Go to Top (Alt + G)" class=top-link id=top-link accesskey=g><svg viewBox="0 0 12 6" fill="currentColor"><path d="M12 6H0l6-6z"/></svg>
</a><script>let menu=document.getElementById("menu");if(menu){const e=localStorage.getItem("menu-scroll-position");e&&(menu.scrollLeft=parseInt(e,10)),menu.onscroll=function(){localStorage.setItem("menu-scroll-position",menu.scrollLeft)}}document.querySelectorAll('a[href^="#"]').forEach(e=>{e.addEventListener("click",function(e){e.preventDefault();var t=this.getAttribute("href").substr(1);window.matchMedia("(prefers-reduced-motion: reduce)").matches?document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView():document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView({behavior:"smooth"}),t==="top"?history.replaceState(null,null," "):history.pushState(null,null,`#${t}`)})})</script><script>var mybutton=document.getElementById("top-link");window.onscroll=function(){document.body.scrollTop>800||document.documentElement.scrollTop>800?(mybutton.style.visibility="visible",mybutton.style.opacity="1"):(mybutton.style.visibility="hidden",mybutton.style.opacity="0")}</script></body></html>

View File

@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Notes on Saurav Dhakal</title>
<link>//localhost:1313/notes/</link>
<description>Recent content in Notes on Saurav Dhakal</description>
<generator>Hugo -- 0.158.0</generator>
<language>en-us</language>
<copyright>SauravDhakal</copyright>
<lastBuildDate>Wed, 20 Aug 2025 00:00:00 +0000</lastBuildDate>
<atom:link href="//localhost:1313/notes/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Sample Note</title>
<link>//localhost:1313/notes/demo/</link>
<pubDate>Wed, 20 Aug 2025 00:00:00 +0000</pubDate>
<guid>//localhost:1313/notes/demo/</guid>
<description>&lt;p&gt;This is a sample note. Notes are meant to be short, quick thoughts or TILs (Today I Learned).&lt;/p&gt;
&lt;p&gt;Delete this file and add your own notes here!&lt;/p&gt;</description>
</item>
</channel>
</rss>

View File

@@ -1 +0,0 @@
<!doctype html><html lang=en-us><head><title>//localhost:1313/</title><link rel=canonical href=//localhost:1313/><meta charset=utf-8><meta http-equiv=refresh content="0; url=//localhost:1313/"></head></html>

View File

@@ -1,3 +0,0 @@
<!doctype html><html lang=en dir=auto data-theme=dark><head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name=robots content="index, follow"><title>Posts | Saurav Dhakal</title><meta name=keywords content><meta name=description content="Long-form articles on software development, architecture, and engineering"><meta name=author content="saurav"><link rel=canonical href=//localhost:1313/posts/><link crossorigin=anonymous href=../assets/css/stylesheet.f3b5a353c674b5e6b6989a6ec07a987e4eec46ddc105399d3b2df9cb53eaaa1f.css integrity="sha256-87WjU8Z0tea2mJpuwHqYfk7sRt3BBTmdOy35y1Pqqh8=" rel="preload stylesheet" as=style><link rel=icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=16x16 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=32x32 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=apple-touch-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=mask-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><meta name=theme-color content="#2e2e33"><meta name=msapplication-TileColor content="#2e2e33"><link rel=alternate type=application/rss+xml href=//localhost:1313/posts/index.xml title=rss><link rel=alternate hreflang=en href=//localhost:1313/posts/><noscript><style>#theme-toggle,.top-link{display:none}</style></noscript><script async src="https://www.googletagmanager.com/gtag/js?id=G-V0CXG8ZEG2"></script><script>var doNotTrack=!1,dnt=navigator.doNotTrack||window.doNotTrack||navigator.msDoNotTrack,doNotTrack=dnt=="1"||dnt=="yes";if(!doNotTrack){window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date),gtag("config","G-V0CXG8ZEG2")}</script><meta property="og:url" content="//localhost:1313/posts/"><meta property="og:site_name" content="Saurav Dhakal"><meta property="og:title" content="Posts"><meta property="og:description" content="Long-form articles on software development, architecture, and engineering"><meta property="og:locale" content="en-us"><meta property="og:type" content="website"><meta name=twitter:card content="summary"><meta name=twitter:title content="Posts"><meta name=twitter:description content="Long-form articles on software development, architecture, and engineering"><script type=application/ld+json>{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Posts","item":"//localhost:1313/posts/"}]}</script></head><body class=list id=top><header class=header><nav class=nav><div class=logo><a href=//localhost:1313/ accesskey=h title="SauravDhakal (Alt + H)">SauravDhakal</a><div class=logo-switches></div></div><ul id=menu><li><a href=//localhost:1313/posts/ title=Posts><span class=active>Posts</span></a></li><li><a href=//localhost:1313/notes/ title=Notes><span>Notes</span></a></li><li><a href=//localhost:1313/tags/ title=Tags><span>Tags</span></a></li><li><a href=//localhost:1313/search/ title="Search (Alt + /)" accesskey=/><span>Search</span></a></li></ul></nav></header><main class=main><header class=page-header><div class=breadcrumbs><a href=//localhost:1313/>Home</a></div><h1>Posts
<a href=../posts/index.xml title=RSS aria-label=RSS><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height="23"><path d="M4 11a9 9 0 019 9"/><path d="M4 4a16 16 0 0116 16"/><circle cx="5" cy="19" r="1"/></svg></a></h1><div class=post-description>Long-form articles on software development, architecture, and engineering</div></header></main><footer class=footer><span>Copyright &copy; 2026 SauravDhakal</span></footer><a href=#top aria-label="go to top" title="Go to Top (Alt + G)" class=top-link id=top-link accesskey=g><svg viewBox="0 0 12 6" fill="currentColor"><path d="M12 6H0l6-6z"/></svg>
</a><script>let menu=document.getElementById("menu");if(menu){const e=localStorage.getItem("menu-scroll-position");e&&(menu.scrollLeft=parseInt(e,10)),menu.onscroll=function(){localStorage.setItem("menu-scroll-position",menu.scrollLeft)}}document.querySelectorAll('a[href^="#"]').forEach(e=>{e.addEventListener("click",function(e){e.preventDefault();var t=this.getAttribute("href").substr(1);window.matchMedia("(prefers-reduced-motion: reduce)").matches?document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView():document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView({behavior:"smooth"}),t==="top"?history.replaceState(null,null," "):history.pushState(null,null,`#${t}`)})})</script><script>var mybutton=document.getElementById("top-link");window.onscroll=function(){document.body.scrollTop>800||document.documentElement.scrollTop>800?(mybutton.style.visibility="visible",mybutton.style.opacity="1"):(mybutton.style.visibility="hidden",mybutton.style.opacity="0")}</script></body></html>

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Posts on Saurav Dhakal</title>
<link>//localhost:1313/posts/</link>
<description>Recent content in Posts on Saurav Dhakal</description>
<generator>Hugo -- 0.158.0</generator>
<language>en-us</language>
<copyright>SauravDhakal</copyright>
<atom:link href="//localhost:1313/posts/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@@ -1 +0,0 @@
<!doctype html><html lang=en-us><head><title>//localhost:1313/posts/</title><link rel=canonical href=//localhost:1313/posts/><meta charset=utf-8><meta http-equiv=refresh content="0; url=//localhost:1313/posts/"></head></html>

View File

@@ -1,3 +0,0 @@
User-agent: *
Disallow:
Sitemap: //localhost:1313/sitemap.xml

View File

@@ -1,2 +0,0 @@
<!doctype html><html lang=en dir=auto data-theme=dark><head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name=robots content="index, follow"><title>Search | Saurav Dhakal</title><meta name=keywords content><meta name=description content="Search posts and notes"><meta name=author content="saurav"><link rel=canonical href=//localhost:1313/search/><link crossorigin=anonymous href=../assets/css/stylesheet.f3b5a353c674b5e6b6989a6ec07a987e4eec46ddc105399d3b2df9cb53eaaa1f.css integrity="sha256-87WjU8Z0tea2mJpuwHqYfk7sRt3BBTmdOy35y1Pqqh8=" rel="preload stylesheet" as=style><link crossorigin=anonymous rel=preload as=fetch href=../index.json><script defer crossorigin=anonymous src=../assets/js/search.b58269539d49d6ca2d32b61a53054d36df61ba713a257cbe66f257e175cb4d73.js integrity="sha256-tYJpU51J1sotMrYaUwVNNt9hunE6JXy+ZvJX4XXLTXM="></script><link rel=icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=16x16 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=32x32 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=apple-touch-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=mask-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><meta name=theme-color content="#2e2e33"><meta name=msapplication-TileColor content="#2e2e33"><link rel=alternate hreflang=en href=//localhost:1313/search/><noscript><style>#theme-toggle,.top-link{display:none}</style></noscript><script async src="https://www.googletagmanager.com/gtag/js?id=G-V0CXG8ZEG2"></script><script>var doNotTrack=!1,dnt=navigator.doNotTrack||window.doNotTrack||navigator.msDoNotTrack,doNotTrack=dnt=="1"||dnt=="yes";if(!doNotTrack){window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date),gtag("config","G-V0CXG8ZEG2")}</script><meta property="og:url" content="//localhost:1313/search/"><meta property="og:site_name" content="Saurav Dhakal"><meta property="og:title" content="Search"><meta property="og:description" content="Search posts and notes"><meta property="og:locale" content="en-us"><meta property="og:type" content="article"><meta name=twitter:card content="summary"><meta name=twitter:title content="Search"><meta name=twitter:description content="Search posts and notes"><script type=application/ld+json>{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Search","item":"//localhost:1313/search/"}]}</script><script type=application/ld+json>{"@context":"https://schema.org","@type":"BlogPosting","headline":"Search","name":"Search","description":"Search posts and notes","keywords":[],"articleBody":"","wordCount":"0","inLanguage":"en","datePublished":"0001-01-01T00:00:00Z","dateModified":"0001-01-01T00:00:00Z","author":{"@type":"Person","name":"saurav"},"mainEntityOfPage":{"@type":"WebPage","@id":"//localhost:1313/search/"},"publisher":{"@type":"Organization","name":"Saurav Dhakal","logo":{"@type":"ImageObject","url":"//localhost:1313/%3Clink%20/%20abs%20url%3E"}}}</script></head><body class=list id=top><header class=header><nav class=nav><div class=logo><a href=//localhost:1313/ accesskey=h title="SauravDhakal (Alt + H)">SauravDhakal</a><div class=logo-switches></div></div><ul id=menu><li><a href=//localhost:1313/posts/ title=Posts><span>Posts</span></a></li><li><a href=//localhost:1313/notes/ title=Notes><span>Notes</span></a></li><li><a href=//localhost:1313/tags/ title=Tags><span>Tags</span></a></li><li><a href=//localhost:1313/search/ title="Search (Alt + /)" accesskey=/><span class=active>Search</span></a></li></ul></nav></header><main class=main><header class=page-header><h1>Search <svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg></h1><div class=post-meta></div></header><div id=searchbox><input id=searchInput autofocus placeholder=Search... aria-label=search type=search autocomplete=off maxlength=64><ul id=searchResults aria-label="search results"></ul></div></main><footer class=footer><span>Copyright &copy; 2026 SauravDhakal</span></footer><a href=#top aria-label="go to top" title="Go to Top (Alt + G)" class=top-link id=top-link accesskey=g><svg viewBox="0 0 12 6" fill="currentColor"><path d="M12 6H0l6-6z"/></svg>
</a><script>let menu=document.getElementById("menu");if(menu){const e=localStorage.getItem("menu-scroll-position");e&&(menu.scrollLeft=parseInt(e,10)),menu.onscroll=function(){localStorage.setItem("menu-scroll-position",menu.scrollLeft)}}document.querySelectorAll('a[href^="#"]').forEach(e=>{e.addEventListener("click",function(e){e.preventDefault();var t=this.getAttribute("href").substr(1);window.matchMedia("(prefers-reduced-motion: reduce)").matches?document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView():document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView({behavior:"smooth"}),t==="top"?history.replaceState(null,null," "):history.pushState(null,null,`#${t}`)})})</script><script>var mybutton=document.getElementById("top-link");window.onscroll=function(){document.body.scrollTop>800||document.documentElement.scrollTop>800?(mybutton.style.visibility="visible",mybutton.style.opacity="1"):(mybutton.style.visibility="hidden",mybutton.style.opacity="0")}</script></body></html>

View File

@@ -1,26 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>//localhost:1313/tags/example/</loc>
<lastmod>2025-08-20T00:00:00+00:00</lastmod>
</url><url>
<loc>//localhost:1313/notes/</loc>
<lastmod>2025-08-20T00:00:00+00:00</lastmod>
</url><url>
<loc>//localhost:1313/notes/demo/</loc>
<lastmod>2025-08-20T00:00:00+00:00</lastmod>
</url><url>
<loc>//localhost:1313/</loc>
<lastmod>2025-08-20T00:00:00+00:00</lastmod>
</url><url>
<loc>//localhost:1313/tags/</loc>
<lastmod>2025-08-20T00:00:00+00:00</lastmod>
</url><url>
<loc>//localhost:1313/categories/</loc>
</url><url>
<loc>//localhost:1313/posts/</loc>
</url><url>
<loc>//localhost:1313/search/</loc>
</url>
</urlset>

View File

@@ -1,2 +0,0 @@
<!doctype html><html lang=en dir=auto data-theme=dark><head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name=robots content="index, follow"><title>Tags | Saurav Dhakal</title><meta name=keywords content><meta name=description content="A personal blog"><meta name=author content="saurav"><link rel=canonical href=//localhost:1313/tags/><link crossorigin=anonymous href=../assets/css/stylesheet.f3b5a353c674b5e6b6989a6ec07a987e4eec46ddc105399d3b2df9cb53eaaa1f.css integrity="sha256-87WjU8Z0tea2mJpuwHqYfk7sRt3BBTmdOy35y1Pqqh8=" rel="preload stylesheet" as=style><link rel=icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=16x16 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=32x32 href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=apple-touch-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><link rel=mask-icon href=//localhost:1313/%3Clink%20/%20abs%20url%3E><meta name=theme-color content="#2e2e33"><meta name=msapplication-TileColor content="#2e2e33"><link rel=alternate type=application/rss+xml href=//localhost:1313/tags/index.xml title=rss><link rel=alternate hreflang=en href=//localhost:1313/tags/><noscript><style>#theme-toggle,.top-link{display:none}</style></noscript><script async src="https://www.googletagmanager.com/gtag/js?id=G-V0CXG8ZEG2"></script><script>var doNotTrack=!1,dnt=navigator.doNotTrack||window.doNotTrack||navigator.msDoNotTrack,doNotTrack=dnt=="1"||dnt=="yes";if(!doNotTrack){window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date),gtag("config","G-V0CXG8ZEG2")}</script><meta property="og:url" content="//localhost:1313/tags/"><meta property="og:site_name" content="Saurav Dhakal"><meta property="og:title" content="Tags"><meta property="og:description" content="A personal blog"><meta property="og:locale" content="en-us"><meta property="og:type" content="website"><meta name=twitter:card content="summary"><meta name=twitter:title content="Tags"><meta name=twitter:description content="A personal blog"></head><body class=list id=top><header class=header><nav class=nav><div class=logo><a href=//localhost:1313/ accesskey=h title="SauravDhakal (Alt + H)">SauravDhakal</a><div class=logo-switches></div></div><ul id=menu><li><a href=//localhost:1313/posts/ title=Posts><span>Posts</span></a></li><li><a href=//localhost:1313/notes/ title=Notes><span>Notes</span></a></li><li><a href=//localhost:1313/tags/ title=Tags><span class=active>Tags</span></a></li><li><a href=//localhost:1313/search/ title="Search (Alt + /)" accesskey=/><span>Search</span></a></li></ul></nav></header><main class=main><header class=page-header><h1>Tags</h1></header><ul class=terms-tags><li><a href=//localhost:1313/tags/example/>example <sup><strong><sup>1</sup></strong></sup></a></li></ul></main><footer class=footer><span>Copyright &copy; 2026 SauravDhakal</span></footer><a href=#top aria-label="go to top" title="Go to Top (Alt + G)" class=top-link id=top-link accesskey=g><svg viewBox="0 0 12 6" fill="currentColor"><path d="M12 6H0l6-6z"/></svg>
</a><script>let menu=document.getElementById("menu");if(menu){const e=localStorage.getItem("menu-scroll-position");e&&(menu.scrollLeft=parseInt(e,10)),menu.onscroll=function(){localStorage.setItem("menu-scroll-position",menu.scrollLeft)}}document.querySelectorAll('a[href^="#"]').forEach(e=>{e.addEventListener("click",function(e){e.preventDefault();var t=this.getAttribute("href").substr(1);window.matchMedia("(prefers-reduced-motion: reduce)").matches?document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView():document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView({behavior:"smooth"}),t==="top"?history.replaceState(null,null," "):history.pushState(null,null,`#${t}`)})})</script><script>var mybutton=document.getElementById("top-link");window.onscroll=function(){document.body.scrollTop>800||document.documentElement.scrollTop>800?(mybutton.style.visibility="visible",mybutton.style.opacity="1"):(mybutton.style.visibility="hidden",mybutton.style.opacity="0")}</script></body></html>

View File

@@ -1,20 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>Tags on Saurav Dhakal</title>
<link>//localhost:1313/tags/</link>
<description>Recent content in Tags on Saurav Dhakal</description>
<generator>Hugo -- 0.158.0</generator>
<language>en-us</language>
<copyright>SauravDhakal</copyright>
<lastBuildDate>Wed, 20 Aug 2025 00:00:00 +0000</lastBuildDate>
<atom:link href="//localhost:1313/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Example</title>
<link>//localhost:1313/tags/example/</link>
<pubDate>Wed, 20 Aug 2025 00:00:00 +0000</pubDate>
<guid>//localhost:1313/tags/example/</guid>
<description></description>
</item>
</channel>
</rss>