Hacker News new | ask | show | jobs
by devmunchies 1543 days ago
If you want even more raw, why use git? Do you need version control for a blog? Just use S3 as a file system and serve directly from there. Can still use cloudflare if you want.

If you want a templating system, it wouldn’t be hard to run a script that deterministically takes all templates in folder X and compiles them into folder Y.

1 comments

Depending on your JS ethics, and care for SEO, each page could be like this, allowing you to change style and layout at a later date.

    <body>
       <script src="./magic.js"></script>
       # Markdown goes here
       * etc.
    </body>
Where magic.js converts MD to HTML, adds CSS/Templating, and somehow if it can get a list of files from the server can produce a list of posts.