Finally got the minimalistic flatfile blogging system completed.

Essentally all the post in my blog is organized as flat files in a folder called /blog/ they are all named in this format:

[ISO8601 timedate]+[optional "_"or" "]+[title of post]+ [file extension ".txt" ".md"]

Regular expression used to extract these information is “/(?P\d{4}-(?:W)?\d{1,2}-\d{1,2}(?:T\d{2}\:\d{2}\:\d{2})?[Z]?(?:[+-]\d{2}\:\d{2})?)?[ _]?(?P[^.]+)(?P<fileExtention>\..*)?/" . Again, please contact me if you use it, I would really love to hear your progress.</fileExtention>

If you need any assistance in how I created this site, let me know as well! I’m more than happy to share my codes.