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
14 changes: 14 additions & 0 deletions src/data/blogPosts.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
[
{
"slug": "smoke-test-blog-admin-pipeline",
"title": "Smoke Test: Blog Admin Pipeline",
"description": "A throwaway post created by the blog-admin integration test to verify the atomic commit, registry update, and PR flow end to end.",
"date": "Jul 3",
"year": 2026,
"category": "Blog",
"tags": [
"test",
"smoke"
],
"banner": "banners/smoke-test-blog-admin-pipeline.webp",
"iso_date": "2026-07-03"
},
{
"slug": "overlay-network-ai-agents",
"title": "Overlay Network for AI Agents: Architecture and Trust Model",
Expand Down
16 changes: 16 additions & 0 deletions src/pages/blog/smoke-test-blog-admin-pipeline.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
import BlogLayout from '../../layouts/BlogLayout.astro';

const bodyContent = `<p>This is a <strong>smoke test</strong> post. It should be deleted.</p>
<section><h2>Section</h2><p>Body with a code sample <code>pilotctl bench</code>.</p></section>`;
---
<BlogLayout
title="Smoke Test: Blog Admin Pipeline"
description="A throwaway post created by the blog-admin integration test to verify the atomic commit, registry update, and PR flow end to end."
date="July 3, 2026"
tags={["test", "smoke"]}
canonicalPath="/blog/smoke-test-blog-admin-pipeline"
bannerImage="/blog/banners/smoke-test-blog-admin-pipeline.webp"
>
<Fragment set:html={bodyContent} />
</BlogLayout>
Loading