« get me outta code hell

homepage.js « page « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/page/homepage.js
blob: cfcdd6e12aa2d6c1b30a49ef3cc716977d76b598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export const description = `main wiki homepage`;

export function pathsTargetless({wikiData}) {
  return [
    {
      type: 'page',
      path: ['home'],

      contentFunction: {
        name: 'generateWikiHomepagePage',
        args: [wikiData.homepageLayout],
      },
    },
  ];
}