hexo-theme-volantis
Version:
Elegant and powerful theme for Hexo.
18 lines (15 loc) • 374 B
JavaScript
/**
* links.js v1 | https://github.com/xaoxuu/hexo-theme-stellar/
*/
;
module.exports = ctx => {
var allLinks = {}
const data = ctx.locals.get('data')
for (let key of Object.keys(data)) {
if (key.startsWith('links/')) {
let newKey = key.replace('links/', '')
allLinks[newKey] = data[key]
}
}
ctx.theme.config.links = allLinks
}