42 lines
1.2 KiB
Markdown
42 lines
1.2 KiB
Markdown
---
|
|
title: Portfolio Definition
|
|
description: How to define your portfolio in FrontMatter
|
|
date: "2019-05-02T19:49:05+02:00"
|
|
publishDate: "2019-05-02T19:49:05+02:00"
|
|
---
|
|
|
|
Here are some details about the portfolio settings.
|
|
|
|
{{< figure src="/post/images/portfolio-example.png" caption="Example of Portfolio page" >}}
|
|
|
|
<!--more-->
|
|
|
|
```YAML
|
|
---
|
|
title:
|
|
description:
|
|
date: "2019-05-02T19:47:09+02:00"
|
|
jobDate: 201
|
|
work: []
|
|
techs: []
|
|
designs: []
|
|
thumbnail:
|
|
projectUrl:
|
|
testimonial:
|
|
name:
|
|
role:
|
|
image:
|
|
text:
|
|
---
|
|
```
|
|
|
|
Here are some explanations about the portfolio FrontMatter:
|
|
- `jobDate` is the year displayed on the list and show of your project
|
|
- `work` is displayed on the list of projects. It is an array of type of job that you did on the project.
|
|
- `techs` and `designs` are displayed on the show page of your project. It is an array of tools you used on the project
|
|
- `thumbnail` is a image file displayed both for the list and show of the project
|
|
- `projectUrl` is the URL to the project.
|
|
- The `testimonial` params define the person giving your a testimonial as well as the text of the testimonial.
|
|
|
|
NB: if `techs`, `designs` or `projectUrl` is not defined, it will not be displayed at all.
|