so I have:
blog.prefix = "blog"
set :relative_links, true
activate :relative_assets
set :images_dir, 'img'
in config file
everything works good: eg, css and so. but images wont.
i have markdown:
![Funny git commit](git_commit.jpg)
I can see pic in /blog/index.html (src="…/img/git_commit.jpg" is correct)
but not able to see in /blog/2014/08/11/my-post.html (src="…/img/git_commit.jpg" is the same, but not correct)
what I do to fix is: <img alt="Funny git commit" src="/img/git_commit.jpg" >
but that doesn’t seems right.
you can see it in here: https://github.com/hovancik/hovancik.github.io/blob/f068db4ee91d89537902cd9fc1b5d4510ba0705b/blog/2014/08/11/i-wish-i-was-double-checking-my-commit-messages.html
change to develop branch if you want to see all my config and so.