feat: update article content
This commit is contained in:
parent
cd087cbe63
commit
ab94b078e8
19 changed files with 770 additions and 14 deletions
|
@ -20,8 +20,8 @@ export default defineConfig({
|
||||||
markdown: {
|
markdown: {
|
||||||
shikiConfig: {
|
shikiConfig: {
|
||||||
themes: {
|
themes: {
|
||||||
light: 'vitesse-light',
|
light: 'github-light-default',
|
||||||
dark: 'vitesse-dark',
|
dark: 'github-dark-default',
|
||||||
},
|
},
|
||||||
wrap: true,
|
wrap: true,
|
||||||
},
|
},
|
||||||
|
|
|
@ -5,4 +5,47 @@ duration: 5min
|
||||||
date: 2022-12-01
|
date: 2022-12-01
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -5,4 +5,47 @@ duration: 5min
|
||||||
date: 2018-01-01
|
date: 2018-01-01
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -5,4 +5,47 @@ duration: 5min
|
||||||
date: 2022-02-01
|
date: 2022-02-01
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -5,4 +5,47 @@ duration: 5min
|
||||||
date: 2024-03-01
|
date: 2024-03-01
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -4,4 +4,47 @@ description: Your blog description, which is long text, can be an introduction t
|
||||||
date: 2024-05-01
|
date: 2024-05-01
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -5,4 +5,47 @@ date: 2024-04-01
|
||||||
lang: zh
|
lang: zh
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -5,4 +5,47 @@ date: 2024-03-01
|
||||||
tag: Tag Text
|
tag: Tag Text
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -4,3 +4,48 @@ description: If you need to link to an external address, you can set the redirec
|
||||||
date: 2024-02-01
|
date: 2024-02-01
|
||||||
redirect: '/'
|
redirect: '/'
|
||||||
---
|
---
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -4,3 +4,48 @@ description: If you want to tell the visitor that there is a video, you can set
|
||||||
date: 2024-02-01
|
date: 2024-02-01
|
||||||
video: true
|
video: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -3,3 +3,48 @@ title: Blog Title
|
||||||
description: Vitesse theme groups posts by year and displays them sorted by date.
|
description: Vitesse theme groups posts by year and displays them sorted by date.
|
||||||
date: 2023-08-01
|
date: 2023-08-01
|
||||||
---
|
---
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -4,3 +4,48 @@ description: You can set a duration to tell the viewer how long it will take to
|
||||||
duration: 20min
|
duration: 20min
|
||||||
date: 2023-05-01
|
date: 2023-05-01
|
||||||
---
|
---
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -3,3 +3,48 @@ title: Blog Title
|
||||||
description: The date and title fields are required.
|
description: The date and title fields are required.
|
||||||
date: 2022-11-01
|
date: 2022-11-01
|
||||||
---
|
---
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -5,4 +5,47 @@ duration: 30min
|
||||||
date: 2023-12-01
|
date: 2023-12-01
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -5,4 +5,47 @@ duration: 30min
|
||||||
date: 2023-11-01
|
date: 2023-11-01
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -5,4 +5,47 @@ duration: 30min
|
||||||
date: 2024-02-01
|
date: 2024-02-01
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -5,4 +5,47 @@ duration: 30min
|
||||||
date: 2022-12-01
|
date: 2022-12-01
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -24,6 +24,8 @@ The main content of your article
|
||||||
|
|
||||||
The main content of your article
|
The main content of your article
|
||||||
|
|
||||||
|
Table Style:
|
||||||
|
|
||||||
| Field | Req | Description |
|
| Field | Req | Description |
|
||||||
| :---- | :-- | :-----------|
|
| :---- | :-- | :-----------|
|
||||||
| NAME | Yes | Displayed in header and footer. Used in SEO and RSS. |
|
| NAME | Yes | Displayed in header and footer. Used in SEO and RSS. |
|
||||||
|
@ -31,3 +33,16 @@ The main content of your article
|
||||||
| NUM_POSTS | Yes | Limit num of posts on home page. |
|
| NUM_POSTS | Yes | Limit num of posts on home page. |
|
||||||
| NUM_WORKS | Yes | Limit num of works on home page. |
|
| NUM_WORKS | Yes | Limit num of works on home page. |
|
||||||
| NUM_PROJECTS | Yes | Limit num of projects 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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
|
@ -2,4 +2,47 @@
|
||||||
title: Page Title
|
title: Page Title
|
||||||
---
|
---
|
||||||
|
|
||||||
Writing...
|
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
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue