164 文字
1 分
フロントマターの説明等

トップ画像のリンク: Source
このブログのテンプレートは Astroで作られています。 StartUp カテゴリに知りたい内容がない場合はAstro Docsを参照されたし。
投稿のフロントマター
---
title: My First Blog Post
published: 2023-09-09
description: This is the first post of my new Astro blog.
image: ./cover.jpg
tags: [Foo, Bar]
category: Front-end
draft: false
---
Attribute | Description |
---|---|
title | 投稿のタイトル |
published | 投稿日 |
description | 概要 |
image | 見出し画像へのリンク |
tags | 投稿のタグ |
category | 投稿のカテゴリ |
draft | 公開非公開の設定 |
投稿記事の置き場
投稿は src/content/posts/
ディレクトリに置かなきゃいけない. 画像等を含めたい場合は
サブディレクトリを作成する。
src/content/posts/
├── post-1.md #https://<User>.github.io/<repos>/posts/post-1
└── post-2/
├── cover.png
└── index.md # ##https://<User>.github.io/<repos>/posts/post-2