|
<section> |
|
<div class="mx-auto max-w-7xl bg-white pb-20 sm:pb-24"> |
|
<div class="mb-10"> |
|
<div |
|
class="mx-auto grid max-w-2xl grid-cols-1 gap-x-4 gap-y-16 lg:mx-0 lg:max-w-none lg:grid-cols-3" |
|
> |
|
{{ range where .Site.RegularPages ".Params.tags" "intersect" (slice $campaign) }} |
|
{{ partial "resource-link.html" . }} |
|
{{ end }} |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
Kindly pointed out by @b-n:
change this into a shortcode and then get people to include it explicitly on the copy. e.g. {{< resources tag=$campaign />}}.
twc-site-nl/layouts/_default/campaign.html
Lines 50 to 62 in 33efd30
Kindly pointed out by @b-n: