mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-12-17 15:40:37 +00:00
intégration des objets magiques + filtres
This commit is contained in:
parent
1330db17af
commit
d80cbc2600
315 changed files with 13824 additions and 2 deletions
|
|
@ -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/'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue