all repos — archive/homestead @ 6fd0c4b95eb82e5c60b3740dabcfe4590fe78d82

My future indieweb platform

fix(Responders): fix incorrect post URLs

Alan Pearce
commit

6fd0c4b95eb82e5c60b3740dabcfe4590fe78d82

parent

ab3c5ffb57980359a186936aa6fc2894f58eb625

1 file changed, 1 insertion(+), 1 deletion(-)

changed files
M src/responders.jssrc/responders.js
@@ -38,7 +38,7 @@ }
const renderPostListItem = ctx => post => ({ a: { - href: ctx.getURL(post, post.basename), + href: ctx.getURL("post", post.basename), _text: post.data.get("title") } });