thumbnail.js 225 B

123456789
  1. /**
  2. * Thumbnail Helper
  3. * @description Get the thumbnail url from a post
  4. * @example
  5. * <%- thumbnail(post) %>
  6. */
  7. hexo.extend.helper.register('thumbnail', function (post) {
  8. return post.thumbnail || post.banner || '';
  9. });