Categories
Tags
Ai 生成 best-practices Blogging Caching CLI context CSS Customization Demo development DocC Example extension Fuwari generator grep hooks HTML iOS JavaScript javascript Javascript Linux Markdown Next.js PostCSS progress Promise PWA react React React Hook Form React Query React Router react-native Scheduler security Service Worker SSR state-management suspense TanStack Query TanStack Start tips tsconfig TypeScript typescript Video VS Code vscode Web API Web Development Zod 二叉树 代码组织 任务调度 优先级 入门教程 最佳实践 最小堆 前端 前端开发 可视化 可访问性 命令行 工具链 并发控制 开发教程 开源 异步处理 异步编程 性能优化 手写系列 排序 插件开发 数据结构 数据获取 无限滚动 日历 日志分析 源码分析 状态管理 离线支持 算法 翻译 表单验证 设计模式 语义化 运维 配置
160 words
1 minutes
Simple Guides for Fuwari
Cover image source: Source
This blog template is built with Astro. For the things that are not mentioned in this guide, you may find the answers in the Astro Docs.
Front-matter of Posts
--- title: My First Blog Post published: 2023-09-09 description: This is the first post of my new Astro blog. image: "./cover.jpeg" tags: [Foo, Bar] category: Front-end draft: false ---
Attribute | Description |
---|---|
title | The title of the post. |
published | The date the post was published. |
description | A short description of the post. Displayed on index page. |
image | The cover image path of the post. 1. Start with http:// or https:// : Use web image2. Start with / : For image in public dir3. With none of the prefixes: Relative to the markdown file |
tags | The tags of the post. |
category | The category of the post. |
draft | If this post is still a draft, which won’t be displayed. |
Where to Place the Post Files
Your post files should be placed in src/content/posts/
directory. You can also create sub-directories to better organize your posts and assets.
src/content/posts/ ├── post-1.md └── post-2/ ├── cover.png └── index.md
Simple Guides for Fuwari
https://0bipinnata0.my/posts/guide/