{ title, author, created, content, ... } @ extraArgs : let inherit (extraArgs) file; in { name = "post"; output = { template = "base"; inherit file; head = /*html*/'' ${title} ''; body = /*html*/''

${title}

${author} | published: ${created}


${content}
''; }; }