Skip to content

Commit 758c5b4

Browse files
committed
Add blog post: Dry Run Test Post
1 parent 45b8bc8 commit 758c5b4

3 files changed

Lines changed: 26 additions & 1 deletion

File tree

18.6 KB
Loading

web/src/data/blogPosts.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,20 @@ export interface BlogPost {
1010
}
1111

1212
export const blogPosts: BlogPost[] = [
13+
{
14+
slug: "dry-run-test-delete-me",
15+
title: "Dry Run Test Post",
16+
description: "This is a dry run test of the publish pipeline.",
17+
date: "Mar 27",
18+
category: "Tutorial",
19+
tags: ["test"],
20+
banner: "banners/dry-run-test-delete-me.png",
21+
},
22+
1323
{
1424
slug: "pilot-console-manage-agent-networks",
1525
title: "Introducing the Pilot Console: Manage Agent Networks From a Browser",
16-
description: "The Pilot Console is a web dashboard for managing private agent networks, monitoring nodes, generating API keys, and handling billing all from your browser.",
26+
description: "The Pilot Console is a web dashboard for managing private agent networks, monitoring nodes, generating API keys, and handling billing — all from your browser.",
1727
date: "Mar 26",
1828
category: "Enterprise",
1929
tags: ["console", "enterprise", "dashboard"],
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
import BlogLayout from "../../layouts/BlogLayout.astro";
3+
4+
const bodyContent = `<h2 id="intro">Introduction</h2><p>This is a test post to verify the full pipeline.</p>`;
5+
---
6+
<BlogLayout
7+
title="Dry Run Test Post"
8+
description="This is a dry run test of the publish pipeline."
9+
date="March 27, 2026"
10+
tags={["test"]}
11+
canonicalPath="/blog/dry-run-test-delete-me"
12+
bannerImage="/blog/banners/dry-run-test-delete-me.png"
13+
>
14+
<Fragment set:html={bodyContent} />
15+
</BlogLayout>

0 commit comments

Comments
 (0)