fix(Responders): fix incorrect post URLs
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M src/responders.js → src/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") } });