Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/data/blogPosts.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
[
{
"slug": "zzz-spec-test",
"title": "Spec Verification Post",
"description": "Up-to-spec verification of FAQ, crosspost, optimistic locking behaviors end to end.",
"date": "Jul 7",
"year": 2026,
"category": "Blog",
"tags": [
"test"
],
"banner": "banners/zzz-spec-test.webp",
"iso_date": "2026-07-07",
"crosspost": {
"devto": true
}
},
{
"slug": "build-an-agent-app",
"title": "Build an Agent App: Turn Your API Into an Installable Pilot App",
Expand Down
27 changes: 27 additions & 0 deletions src/pages/blog/zzz-spec-test.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
import BlogLayout from '../../layouts/BlogLayout.astro';

const bodyContent = `<p>Body v2 edited.</p>`;

const faqItems = [
{
question: "First?",
answer: "One.",
},
{
question: "Second?",
answer: "Two.",
},
];
---
<BlogLayout
title="Spec Verification Post"
description="Up-to-spec verification of FAQ, crosspost, optimistic locking behaviors end to end."
date="July 7, 2026"
tags={["test"]}
canonicalPath="/blog/zzz-spec-test"
bannerImage="/blog/banners/zzz-spec-test.webp"
faqItems={faqItems}
>
<Fragment set:html={bodyContent} />
</BlogLayout>