Hello Blog | en | Strapi CMS Astro Client

Home / Blogs / Hello Blog
Updated at
2026-02-09T07:27:23.595Z
Tags
Description
testing a first blog post

Loaded content

{
  "id": "en/ectj39hel1gg0khu8iomlriz",
  "data": {
    "id": 28,
    "documentId": "ectj39hel1gg0khu8iomlriz",
    "createdAt": "2026-01-27T08:29:26.709Z",
    "updatedAt": "2026-02-09T07:27:23.595Z",
    "publishedAt": "2026-02-09T07:27:23.618Z",
    "title": "Hello Blog",
    "slug": "hello-blog",
    "description": "testing a first blog post",
    "body": "this is a test for a first blog post\n\n# Title 1\n\nParagraph 1\n\n## Title 2\n\nParagraph 2",
    "cover": null,
    "coverAltText": null,
    "locale": "en",
    "localizations": [
      {
        "id": 27,
        "documentId": "ectj39hel1gg0khu8iomlriz",
        "createdAt": "2026-01-27T08:31:28.460Z",
        "updatedAt": "2026-02-09T07:27:10.070Z",
        "publishedAt": "2026-02-09T07:27:10.093Z",
        "title": "Olá Blog",
        "slug": "hello-blog",
        "description": "testando o primeiro post de blog",
        "body": "este é um teste de publicação de um post\n\n# Título 1\n\nParágrafo 1\n\n## Título 2\n\nParágrafo 2",
        "coverAltText": null,
        "locale": "pt-BR"
      }
    ],
    "tags": [
      {
        "id": 9,
        "documentId": "d9j5ryy7fp2dubaa8kmtb9id",
        "createdAt": "2026-01-27T08:22:12.394Z",
        "updatedAt": "2026-01-27T08:22:12.394Z",
        "publishedAt": "2026-01-27T08:28:26.871Z",
        "title": "test",
        "slug": "test",
        "description": "anything related to testing...",
        "locale": "en"
      }
    ]
  },
  "digest": "520269f23692d37d",
  "rendered": {
    "html": "<p>this is a test for a first blog post</p>\n<h1 id=\"title-1\">Title 1</h1>\n<p>Paragraph 1</p>\n<h2 id=\"title-2\">Title 2</h2>\n<p>Paragraph 2</p>",
    "metadata": {
      "headings": [
        {
          "depth": 1,
          "slug": "title-1",
          "text": "Title 1"
        },
        {
          "depth": 2,
          "slug": "title-2",
          "text": "Title 2"
        }
      ],
      "localImagePaths": [],
      "remoteImagePaths": [],
      "frontmatter": {}
    }
  },
  "collection": "blogs"
}

astro:content

const { Content } = await render(entry);

this is a test for a first blog post

Title 1

Paragraph 1

Title 2

Paragraph 2

astro-remote - Markdown

entry.data.body

this is a test for a first blog post

Title 1

Paragraph 1

Title 2

Paragraph 2

astro-remote - Markup

entry.rendered.html

this is a test for a first blog post

Title 1

Paragraph 1

Title 2

Paragraph 2