Files
expressjs.com/vulnerabilities.xml
Rowan Manning 3b8f190f0c feat: add feeds for the blog and vulnerabilities (#1867)
This adds two new feeds to the site: `feed.xml` includes all blog posts,
and `vulnerabilities.xml` includes all posts tagged with
`vulnerabilities`.

Resolves #1763

---------

Co-authored-by: Sebastian Beltran <bjohansebas@gmail.com>
2025-04-14 22:10:04 -05:00

11 lines
297 B
XML

---
layout: feed
sitemap: false
title: Express Vulnerabilities
html_url: /en/blog/posts.html
---
{% assign posts = site.posts | sort: "date" | reverse %}
{% for post in posts %}
{% if post.tags contains "vulnerabilities" %}{% include feed-entry.xml entry=post %}{% endif %}
{% endfor %}