diff --git a/src/_includes/footer.liquid b/src/_includes/footer.liquid
index 949d0da6..36e147ba 100644
--- a/src/_includes/footer.liquid
+++ b/src/_includes/footer.liquid
@@ -9,8 +9,8 @@
{% include "icons/oku.liquid" %}
- Uses
+ Uses
•
- Referrals
+ Referrals
• Cory Dransfeldt • © {{ "now" | date: "%Y" }}
\ No newline at end of file
diff --git a/src/_includes/nav.liquid b/src/_includes/nav.liquid
index 9982c04e..8606f741 100644
--- a/src/_includes/nav.liquid
+++ b/src/_includes/nav.liquid
@@ -1,10 +1,10 @@
- Now
+ Now
- About
+ About
{% include "icons/coffee.liquid" %}
diff --git a/src/posts/2023/now-page-update-matter-favorites.md b/src/posts/2023/now-page-update-matter-favorites.md
new file mode 100644
index 00000000..6dfe1601
--- /dev/null
+++ b/src/posts/2023/now-page-update-matter-favorites.md
@@ -0,0 +1,52 @@
+---
+date: '2023-05-05'
+title: 'Now page update: favorite articles from Matter'
+draft: false
+tags: ['Matter', 'development', 'Eleventy']
+---
+
+I dropped in a quick update to [my now page](/now) to display the 5 most recent articles from my favorites feed in [Matter](https://getmatter.com/).
+
+To do this I'm borrowing from [Federico Viticci's method of obtaining a key for their api](https://www.macstories.net/stories/macstories-starter-pack-reverse-engineering-the-matter-api-and-my-save-to-matter-shortcut/) and using it to make a `GET` request to their `favorites_feed` endpoint:
+
+```javascript
+const EleventyFetch = require('@11ty/eleventy-fetch')
+
+module.exports = async function () {
+ const MATTER_TOKEN = process.env.ACCESS_TOKEN_MATTER
+ const headers = { Authorization: `Bearer ${MATTER_TOKEN}` }
+ const url = `https://web.getmatter.com/api/library_items/favorites_feed`
+ const res = EleventyFetch(url, {
+ duration: '1h',
+ type: 'json',
+ fetchOptions: { headers },
+ })
+ const feed = await res
+ const articles = feed.feed.splice(0, 5)
+ return articles
+}
+```
+
+By following Federico's steps we can obtain a bearer token to access the API which will return an array of our favorited articles. This endpoint is paginated (e.g. passing `?page=1`, but I'm retrieving the full response, reversing the order and rendering the output to achieve the displayed result:
+
+```html
+{% if articles %}
+
+ Reading: favorite articles
+
+
+ {% endif %}
+```
+
+[You can see the result rendered here.](/now)