Welcome to my digital workspace—where I reflect, debug, and occasionally scream at my code.
Built with Hugo, JavaScript, and TailwindCSS. Deployed in Vercel.
A quick note for my future self.
hugo server --bind 0.0.0.0 --baseURL http://<YOUR_IP> --port 1313 --disableFastRender
This lets you access it from any device on the same network, including your phone.
Blog page has tags
, while Project page has featured
, categories
, and cover
in their front matter.
-
New Blog
hugo new --kind blog blog/2024-10-27-sample-post.md
-
New Project
hugo new --kind project project/2024-10-27-sample-project.md
-
Table of Content Simple call, no parameters needed.
{{< toc >}}
-
Alerts:
note
,tip
,important
,warning
, andcaution
{{% note %}} Message here! {{% /note %}}
-
Image with caption
{{< image-caption src="path/to/image.jpg" alt="Image description" caption="This is a caption." >}}