Skip to content
AstroPaper Test Blog
Go back

Welcome to AstroPaper Test Blog

By Platform Team

Welcome to the AstroPaper Test Blog

This is a demonstration of the AstroPaper theme adapter working with our publishing platform.

What is AstroPaper?

AstroPaper is one of the most popular Astro blog themes with:

Strict Schema Requirements

AstroPaper enforces these required fields:

FieldTypeRequired
titlestringYes
pubDatetimeISO 8601Yes
descriptionstringYes

Our adapter automatically handles:

// CRITICAL: pubDatetime is REQUIRED
private extractPubDatetime(page: Page): string {
  const date = this.extractDate(page);
  return date.toISOString();
}

Dynamic OG Images

AstroPaper generates Open Graph images automatically using Satori. If you don’t provide an ogImage, one will be created based on your title and description.

Search is built-in via Pagefind integration. Try searching for any content on this site!

Explore More

Check out our other articles to see more features in action.


Share this post:

Previous Post
AstroPaper Schema Deep Dive