1. Using reference based linking from Contentful

    Posted last year

    With some nicely formatted content, the blog becomes readable, so let's improve the internal linking system by investigating the Tags in relation to Articles. This will allow users to navigate and group articles based on a common tag.

    Requirement for this step is to have multiple articles added, where some have a common tag.

  2. Marking up the Contentful contents

    Posted last year

    Now that we have some content exposed, it might have occurred that it's not really anything useful for a visitor. We're getting a JSON shape from the Contentful API, so let's make turn that into HTML markup using the tools that Contentful provides.

  3. Add the articles from Contentful to Nuxt3

    Posted last year

    What makes a website a blog? Articles of course! In the last step we already did a lot of legwork to grab contents and show it on the page, so this is just a repetition of what we already were doing, should be straight forward then!

  4. Dynamic slugs to pages

    Posted last year

    In previous parts we've already established a connection to Contentful, but it's a static setup. In this step we'll be mapping a route to a page, which allows for more creativity and less manual maintenance.

  5. Connecting Nuxt 3 to the Contentful blog

    Posted last year

    So far we have two unconnected systems. So in this post, we're going to connect them to read from the Pages, Articles and Tags. We're first just going to add all of the utilities and helpers that we'll need. We're going to create a Nuxt plugin and some composables.