feat: initial commit

This commit is contained in:
Rudra Saraswat 2025-12-13 01:26:09 +00:00
commit acdb3689d7
80 changed files with 2127 additions and 0 deletions

9
posts.js Normal file
View file

@ -0,0 +1,9 @@
let posts = {
'first post!': 'first-post'
}
Object.keys(posts).forEach(post => {
document.getElementById('posts_list').innerHTML += `
<li><a href="/blog.html?post=${posts[post]}">${post}</a></li>
`
});