diff options
Diffstat (limited to 'src/page')
-rw-r--r-- | src/page/art-tag.js | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/page/art-tag.js b/src/page/art-tag.js index 32e869e1..5b61229d 100644 --- a/src/page/art-tag.js +++ b/src/page/art-tag.js @@ -1,6 +1,6 @@ // Art tag page specification. -export const description = `per-art-tag gallery pages`; +export const description = `per-art-tag info & gallery pages`; export function condition({wikiData}) { return wikiData.wikiInfo.enableArtTagUI; @@ -14,6 +14,16 @@ export function pathsForTarget(tag) { return [ { type: 'page', + path: ['artTagInfo', tag.directory], + + contentFunction: { + name: 'generateArtTagInfoPage', + args: [tag], + }, + }, + + { + type: 'page', path: ['artTagGallery', tag.directory], contentFunction: { |