I am trying to create a blog with all full posts on a single page. Ideally, this would even be a static HTML page.
The big problem is linking to these posts, especially for search engines. I do not want to create separate pages for each post. So with all on one page, I can only use URL hashes like /index.html#post-title
to link to specific posts, right?
However, it seems like search engines ignore these hashes and therefore can't link to or index specific posts. Which obviously sucks for a blog.
So, any ideas on how I could solve that? I thought about making separate pages for each post while making it look like they are all the same page - but I would prefer a cleaner way.