1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| meta: { title: hexo.config.title, subtitle: hexo.config.subtitle, description: hexo.config.description, author: hexo.config.author, url: hexo.config.url }, pages: [{ title: page.title, slug: page.slug, date: page.date, updated: page.updated, comments: page.comments, permalink: page.permalink, path: page.path, excerpt: page.excerpt, keywords: null text: page.content, raw: page.raw, content: page.content }], posts: [{ title: post.title, slug: post.slug, date: post.date, updated: post.updated, comments: post.comments, permalink: post.permalink, path: post.path, excerpt: post.excerpt, keywords: null text: post.content, raw: post.raw, content: post.content, categories: [{ name: category.name, slug: category.slug, permalink: category.permalink }], tags: [{ name: tag.name, slug: tag.slug, permalink: tag.permalink }] }]
|