I can successfully create and run a basic Harp app locally and I can compile to html/css/js and run the homepage and index page on my blog however the article page paths are incorrect.
Locally the paths load as per the article slug, e.g. /articles/welcome-to-harp.md loads as /articles/welcome-to-harp
When compiled there are two issues:
Separate folders for each article are not created, so I end up with /articles/welcome-to-harp.html. I can live with this if I have to - but is there a compile option to create a structure like /articles/welcome-to-harp/index.html?
Links from both the homepage and article indexes point to /articles/welcome-to-harp when they should be pointing to /articles/welcome-to-harp.html as this is the compiled file structure (there is no file at /articles/welcome-to-harp in the compiled www folder)
Im using the kennethormandy/hb-remedy boilerplate and have made no changes. Node and Harp installs are brand new as of today.
Compiled project can be viewed here: http://blog.shapevoid.com/
Any way to resolve these two issues?