← Back to Posts

Getting Started with This Blog

Welcome to my notes blog! This is a space where I document my study notes, research findings, and thoughts on various topics.

About This Blog

This blog is designed to be a simple, clean space for organizing and sharing knowledge. Whether it's notes from a course, insights from research papers, or tutorials I've created, everything lives here.

How Posts Are Organized

Posts are organized by year for easy navigation. Each post has a category tag to help you find related content quickly.

Folder Structure

posts/
├── _template.html    ← Copy this to create new posts
├── 2026/
│   ├── 01-getting-started.html
│   ├── 02-your-next-post.html
│   └── ...
└── 2026/
    └── ...

Creating a New Post

To create a new post, follow these steps:

  1. Copy posts/_template.html to posts/YEAR/XX-post-slug.html
  2. Update the title, date, and category
  3. Write your content using HTML
  4. Add the post to posts.html
  5. Optionally add it to index.html if it's a recent post

Formatting Examples

Code Blocks

Use <pre><code> for code blocks:

function greet(name) {
    return `Hello, ${name}!`;
}

console.log(greet("World"));

Blockquotes

"The only way to do great work is to love what you do."

— Steve Jobs

Lists

  • Unordered list item 1
  • Unordered list item 2
  • Unordered list item 3

Images

Save images to assets/images/ and reference them like this:

<figure>
    <img src="../../assets/images/example.jpg" alt="Description">
    <figcaption>Caption text</figcaption>
</figure>

What's Next

Start creating your own posts! Delete this example post once you're comfortable with the structure, or keep it as a reference.