at.ncvp.me

First Astro project with 'pages' and 'posts' collections

About

About this file

This is src/pages/about.md
Its slug is /about, and it appears at the top level in the sitemap.
Its front matter is:

---
layout: '@layouts/Layout.astro'
title: About
description: Normally more fulsome than 'Home'
author: Admin
pubDate: 20 May 26 11:00
categories: [ admin ]
tags: []
---

You can include HTML code in MD. (That’s how the front matter is shown above.)

Its contents are inserted into <slot /> in Layout.astro

General notes

This was my first Astro project, set up with npm create astro@latest and selecting ‘Start with basic, helpful starter project’

Pages

At least these should be tested:

Sitemap

Implemented by special page /src/pages/sitemap.astro

Special pages

Posts

Not initially tested here. See astro-blog. They may eventually be incorporated here.

At least these should be tested eventually:

Collaboration

I’ve never used it and don’t expect to in the future.