# Adding a special section to my Hugo posts based on a tag or tags I recently [launched a newsletter](https://www.getrevue.co/profile/DuncanMackenzie), despite being assured email is dead, and like any good content creator I want to grow my audience. It wouldn't be crazy to add an advertisement to subscribe to every page on this site, but I cover a wider range of topics here than what I will be putting in the newsletter. Someone visiting the site to read about [Beer Tourism in Shanghai](/blog/beer-tourism-shanghai/), would likely be disappointed by a newsletter that focuses on web performance and general software engineering. With that in mind, I wanted to add a little promotional mention only on posts that were related, based on whether or not they had [the "Web Development" tag](/tags/web-development/). In my Hugo theme, I already had added a feedback section after **all** my posts to point people at twitter, so I decided to just add a new paragraph in there. ```go-html-template
Thoughts on this post? Feel free to reach out on Twitter!
{{ if in .Params.tags "Web Development" }}You may also like subscribing to my newsletter where I share a weekly roundup of web development links and commentary.
{{ end }}