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
70 changes: 70 additions & 0 deletions src/content/posts/test-new-blog/.write-source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"kind": "mlsys-write-source",
"version": 1,
"meta": {
"title": "Test Blog 2",
"summary": "Testing Another blog",
"authors": [
"guest"
],
"writerName": "David",
"topicId": "training",
"topicName": "Training Systems",
"tags": [
"kernels",
"memory"
],
"slug": "test-new-blog",
"coverFileName": "18084626-2.jpg",
"proposedTopic": "Memory Systems"
},
"blocks": [
{
"id": "815dbda3-3f21-4c49-a0bd-f5ae222af6b3",
"type": "paragraph",
"props": {
"backgroundColor": "default",
"textColor": "default",
"textAlignment": "left"
},
"content": [
{
"type": "text",
"text": "testing blogs",
"styles": {}
}
],
"children": []
},
{
"id": "2b309d1a-2290-44fc-891c-042279d598eb",
"type": "figure",
"props": {
"fileName": "gatech-building.jpg",
"src": "",
"alt": "GATECH - The Great!",
"caption": "GATECH - The Great!",
"width": 620
},
"children": []
},
{
"id": "9d1171ea-7d90-491d-af3a-81caa28e23e8",
"type": "paragraph",
"props": {
"backgroundColor": "default",
"textColor": "default",
"textAlignment": "left"
},
"content": [
{
"type": "text",
"text": "Nice!",
"styles": {}
}
],
"children": []
}
],
"tableVariants": {}
}
Binary file added src/content/posts/test-new-blog/18084626-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions src/content/posts/test-new-blog/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: 'Test Blog 2'
summary: 'Testing Another blog'
authors: ['guest']
date: '2026-07-14'
updated: '2026-07-14'
readMin: 1
topic: 'Training Systems'
topicId: 'training'
tags: ['kernels', 'memory']
proposedTopic: 'Memory Systems'
cover: './18084626-2.jpg'
---

import { Image } from 'astro:assets';
import gatechBuilding from './gatech-building.jpg';

testing blogs

<Figure caption="GATECH - The Great!" width={620}>
<Image src={gatechBuilding} alt="GATECH - The Great!" />
</Figure>

Nice!
Loading