我正在尝试在我的树枝模板中使用 Metalsmith 全局元数据。
我没有找到太多关于在模板中使用全局元数据的文档,无论模板语言如何,除了必须引用变量之外global.KEY
,以下内容应该可以工作。
import metalsmith from 'metalsmith';
import twig from 'metalsmith-twig';
import path from 'path';
process.on('uncaughtException', err => console.error(err));
const siteMeta = {
env: (process.env.NODE_ENV || 'dev').trim().toLowerCase(),
site_title: 'Global Site Title'
};
metalsmith(__dirname)
.clean(true)
.metadata(siteMeta)
.source(path.resolve(__dirname, 'content'))
.destination(path.resolve(__dirname, 'build'))
.use(twig({directory: path.resolve(__dirname, 'src/views/templates')}))
.build(err => {if (err) throw err});
但是,在我的树枝模板中,两者都{{global.env}}
返回{{global.site_title}}
空字符串。