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:
- Copy
posts/_template.htmltoposts/YEAR/XX-post-slug.html - Update the title, date, and category
- Write your content using HTML
- Add the post to
posts.html - Optionally add it to
index.htmlif 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.