guide · 2 min read

Example post

A placeholder post used to verify the content-collections pipeline. Replace or delete this file once real content arrives.

By AffiliateRanked Team

#example #setup

Example post

This file lives at src/content/blog/example.md and exists to verify that the Astro content-collections pipeline is wired up correctly.

Once real posts arrive, delete this file — it is only a placeholder.

Authoring new posts

To publish a new article, drop a markdown file into src/content/blog/ with the following frontmatter:

---
title: "Cellxpert vs NetRefer"
excerpt: "Short summary that appears in cards and previews."
date: 2026-05-14
category: "comparison"
tags: ["cellxpert", "netrefer"]
author: "AffiliateRanked Team"
readingTimeMinutes: 8
---

All frontmatter fields are validated against src/content/config.ts. Missing or mistyped fields will fail the build with a clear error.

Markdown features

Standard markdown works out of the box: bold, italic, inline code, links, ordered and unordered lists, blockquotes, headings (## through ######), and horizontal rules.

  • One
  • Two
  • Three

The post body is rendered server-side by Astro — no client-side JavaScript is shipped for static blog content.

Back to all articles

Continue reading

Related articles