personal-website/src/content/blog/talks/post-2.md

52 lines
924 B
Markdown
Raw Normal View History

2024-05-13 02:41:25 +00:00
---
title: Talk Title
description: Your blog description, which is long text, can be an introduction to the post or a paragraph of the post.
duration: 30min
date: 2023-11-01
---
2024-05-13 03:30:21 +00:00
The main content of your article
## h2
The main content of your article
### h3
The main content of your article
#### h4
The main content of your article
##### h5
The main content of your article
###### h6
The main content of your article
Table Style:
| Field | Req | Description |
| :---- | :-- | :-----------|
| NAME | Yes | Displayed in header and footer. Used in SEO and RSS. |
| EMAIL | Yes | Displayed in contact section. |
| NUM_POSTS | Yes | Limit num of posts on home page. |
| NUM_WORKS | Yes | Limit num of works on home page. |
| NUM_PROJECTS | Yes | Limit num of projects on home page. |
Code Snippet:
```ts
export const data = {
name: 'Name',
value: 'Value'
}
export function getName() {
return data.name
}
```