1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-31 05:24:20 +00:00

intégration des objets magiques + filtres

This commit is contained in:
Maxime Moraine 2020-04-09 15:27:03 +02:00
parent 1330db17af
commit d80cbc2600
315 changed files with 13824 additions and 2 deletions

View file

@ -25,6 +25,25 @@ module.exports = {
},
},
},
{
// Unique ID of current classification
id: 'magicitem',
// Meta title for spell list page
title: 'Liste des objets magiques',
// Target directory
dirname: '_magicitems',
// Path of the `entry page` (or `list page`)
path: '/liste-objets-magiques/',
layout: 'MagicItemsLayout',
itemLayout: 'MagicItemLayout',
itemPermalink: '/liste-objets-magiques/:slug',
pagination: {
lengthPerPage: 1000,
sorter: (prev, next) => {
return prev.path - next.path
},
},
},
],
}
],
@ -350,6 +369,10 @@ module.exports = {
title: "Objets magiques intelligents",
path: '/objets-magiques-intelligents/'
},
{
title: "Liste des objets magiques",
path: '/liste-objets-magiques/'
},
{
title: "Les pièges",
path: '/pieges/'