diff --git a/collections/tagsPostsPaged.js b/collections/tagsPostsPaged.js index 408a631d4c..e97ce45720 100644 --- a/collections/tagsPostsPaged.js +++ b/collections/tagsPostsPaged.js @@ -13,9 +13,9 @@ module.exports = collection => { Object.keys(tagList).forEach(tagName => { const filtered = allPosts.filter(post => { if (post.data.tags.length > 0) { - return post?.data?.tags?.includes(tagName) + return post?.data?.tags?.includes(tagName); } - }) + }); const sortedPosts = filtered.sort(sortByDate("desc")); const numberOfPages = Math.ceil(sortedPosts.length / maxPostsPerPage); diff --git a/src/services/workshops/rust.njk b/src/services/workshops/rust.njk index 1d4abea054..cc7c3629af 100644 --- a/src/services/workshops/rust.njk +++ b/src/services/workshops/rust.njk @@ -238,12 +238,32 @@ description: "We provide a number of workshops to enable teams to succeed with R +
+ +
+ {% set 'content' = { "subtitle": "Discover our other services" } %} {{ featuredServices(services['rust-workshops'], content) }} +{% include "global/rust-cta.njk" %} {% include "global/rust-newsletter-cta.njk" %} {% set 'content' = {