Skip to content

Commit 72daa48

Browse files
committed
feat(blog): add AI translation notice and drafts folder
- Add translation notice banner to English blog posts - Create drafts folder for work-in-progress posts
1 parent 6c28623 commit 72daa48

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

src/content/drafts/.gitkeep

Whitespace-only changes.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
description: IBM에서 오픈소스로 공개한 MCP Gateway, mcp-context-forge를 프로덕션 환경에서 운영한 경험을 공유합니다. Virtual Server를 통한 툴 권한 분리, MCP Catalog, 메트릭 기능 등 핵심 기능을 소개합니다.
3+
pubDate: '2025-12-19'
4+
tags:
5+
- LLMOps
6+
- MCP
7+
- Agent
8+
title: MCP Gateway 추천, mcp-context-forge 사용기
9+
---

src/layouts/BlogPostEn.astro

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,14 @@ const imageUrl = heroImage ? new URL(heroImage, Astro.site).href : new URL(Fallb
239239
font-size: 0.9rem;
240240
margin-right: 8px;
241241
}
242+
.translation-notice {
243+
text-align: center;
244+
padding: 10px 16px;
245+
margin-bottom: 28px;
246+
font-size: 0.85rem;
247+
color: #888;
248+
border-bottom: 1px solid #eee;
249+
}
242250
.footer-tag {
243251
color: #666;
244252
padding: 6px 16px;
@@ -318,6 +326,9 @@ const imageUrl = heroImage ? new URL(heroImage, Astro.site).href : new URL(Fallb
318326
</div>
319327
</header>
320328
<div class="post-content">
329+
<div class="translation-notice">
330+
This article was translated using AI.
331+
</div>
321332
<slot />
322333
</div>
323334
{tags && tags.length > 0 && (

0 commit comments

Comments
 (0)