mirror of
https://github.com/expressjs/expressjs.com.git
synced 2026-02-21 19:41:33 +00:00
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>
11 lines
230 B
XML
11 lines
230 B
XML
---
|
|
layout: feed
|
|
sitemap: false
|
|
title: Express Blog
|
|
html_url: /en/blog/posts.html
|
|
---
|
|
{% assign posts = site.posts | sort: "date" | reverse %}
|
|
{% for post in posts %}
|
|
{% include feed-entry.xml entry=post %}
|
|
{% endfor %}
|