/* eslint indent: warn, no-irregular-whitespace: warn */ const iff = (cond, yes, no) => (cond ? yes : no); module.exports = ({post, site, templateSettings}) => { const date = new Date(); return ` ${post.title} ${ post.excerpt ? post.excerpt : `${post.title} – ` } `; };