Create Posts

Metadata

---
# Title which will be shown on index pages like / and /all
title: "This title will be shown on the index pages"

# Timestamps like "2022-09-19T18:29:57+02:00" work too
date: '2022-07-02'

# You don't need quotation marks if you don't like them
excerpt: Small about me page


# Don't show on index pages.
# This is useful if you have a site like "about me" or an imprint and want to link to it in the navbar / footer
shouldBeListedOnIndex: false
---

Latest

The 10 latest posts are shown on this page. You can change this number in routes/index.tsx. Just edit articles.slice(0, 10) to your liking in the handler function.

Archive

Basically the same like the latest-page, but shows all articles and only headlines without excerpt.

You can find the Navbar in the components folder. If you want to add or edit links in the navbar, just edit the MenuEntires:

export const MenuEntries = [
   {
    name: "Latest",
    href: "/",
  },
  {
    name: "Archive",
    href: "/archive",
  },
  {
    name: "About",
    href: "/about",
  }
]

Basically the same like Navbar.