Bin
2025-12-17 2e6c955be321cefd7e0c4a3031eab805e0a5a303
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
hexo.extend.generator.register('page', function(locals){
  const { config } = this;
 
  /* If you’re on the OSS site, remove every pages with `enterprise` tier. Opposite for the ENT site */
  const tierToRemove = config.theme_config.tier === "opensource" ? "enterprise" : "opensource";
 
  const pagesToBuild = locals.pages.filter(page => page.tier !== tierToRemove);
  return pagesToBuild.map(function(page){
    return {
      path: page.path,
      data: page,
      layout: page.layout || 'page'
    };
  });
});