@Madchatthew Are you looking for something like this ?
This can be found here
This uses the “Featured Topics” plugin
https://github.com/yariplus/nodebb-plugin-featured-topics-extended
Note, that I also use a custom URL for this, but allow it to redirect via JS code inside a widget in the page to the actual URL - this requires the “Custom Pages” plugin
https://github.com/psychobunny/nodebb-plugin-custom-pages#readme
Once installed, you just need to create the custom page / route as shown below
Note that this then also adds the associated widget area required in order to implement the below (somewhat cheap) redirect.
The “Featured Topics” plugin does come with a couple of templates, although the one I am using is (unsurprisingly) custom. The code itself is here
<div class="row blog-wrapper">
<br>
<!-- BEGIN topics -->
<div class="col-xs-6 col-sm-4 post-holder" tid="{topics.tid}">
<div class="blog-container" style="border: 1px solid {topics.category.bgColor};">
<a href="{config.relative_path}/topic/{topics.slug}" class="post-box" style="min-height: 340px;">
<div class="parent">
<figure class="blog-image child" style="background: {topics.user.icon:bgColor}
<!-- IF topics.imageurl -->
url({topics.imageurl})
<!-- END topics.imageurl -->
;">
</figure>
</div>
<p class="blog"><span class="category"><em>{topics.category.name}</em></span><br>{topics.title}</p>
</a>
</div>
</div>
<!-- END topics -->
</div>
<!-- IF paginator -->
<div class="section sectionMain">
<div class="PageNav">
<nav>
<!-- IF prevpage -->
<a href="{config.relative_path}{featuredRoute}{prevpage}" class="btn btn-default paginate"></a>
<!-- ENDIF prevpage -->
<!-- BEGIN pages -->
<a href="{config.relative_path}{featuredRoute}{pages.number}" class="btn <!-- IF pages.currentPage -->btn-primary active<!-- ELSE -->btn-default<!-- ENDIF pages.currentPage -->">{pages.number}</a>
<!-- END pages -->
<!-- IF nextpage -->
<a href="{config.relative_path}{featuredRoute}{nextpage}" class="btn btn-default paginate"></a>
<!-- ENDIF nextpage -->
</nav>
</div>
</div>
<!-- ENDIF paginator -->
</div>
Note that there is also custom CSS here which I added to get the layout I wanted, plus the colour scheme - essentially, it’s a “rip” of the “Scout” theme (from memory).
There’s quite a lot here, so do let me know if any questions etc. The “Featured Topics” plugin is a bit of a learning curve, but great once you get the hang of it.