File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 3
3
const blogPosts = require ( './collections/blogPosts' ) ;
4
4
const blogTags = require ( './collections/blogTags' ) ;
5
5
const gameTags = require ( './collections/gameTags' ) ;
6
+ const resourceTags = require ( './collections/resourceTags' ) ;
6
7
7
8
8
9
/** @param {import("@11ty/eleventy").UserConfig } config */
9
10
module . exports = function ( config ) {
10
11
config . addCollection ( 'blogPosts' , blogPosts ) ;
11
12
config . addCollection ( 'blogTags' , blogTags ) ;
12
13
config . addCollection ( 'gameTags' , gameTags ) ;
14
+ config . addCollection ( 'resourceTags' , resourceTags ) ;
13
15
}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ permalink: resources/{{ (category | slugify) if category !== "all" }}/
26
26
<a class =" mg-no-link hide-external-icon resource-item" href =" {{ resource.url }}" title =" {{ resource.title }}" >
27
27
<div class =" mg-card mg-box-shadow d-flex flex-column" >
28
28
<div class =" mg-card-thumbnail"
29
- style =" background-image : url (' {{ resource.cover }}' );
29
+ style =" background-image : url (' {{ resource.cover }}' );" >
30
30
</div >
31
31
by {{ resource .author }}
32
32
</div >
You can’t perform that action at this time.
0 commit comments