add examples
This commit is contained in:
parent
4faf6f641b
commit
b52a57ca66
@ -65,7 +65,10 @@ docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` norangebit/pandock
|
|||||||
|
|
||||||
### Variables
|
### Variables
|
||||||
|
|
||||||
- `europass` (*boolean*) equal to `true` if you want a curriculum in *europass* format
|
- `europass` (*boolean*) equal to `true` if you want a curriculum in *europass* format (default to false)
|
||||||
|
- `theme` not available for the Europass style
|
||||||
|
- `color` blue (default), green, red, orange, grey
|
||||||
|
- `style` classic (default), casual
|
||||||
- `name`
|
- `name`
|
||||||
- `first` (*string*) name.
|
- `first` (*string*) name.
|
||||||
- `family` (*string*) surname.
|
- `family` (*string*) surname.
|
||||||
@ -143,6 +146,9 @@ docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` norangebit/pandock
|
|||||||
### Variabili
|
### Variabili
|
||||||
|
|
||||||
- `europass` (*boolean*) pari a `true` se si desidera un curriculum in formato *europass*
|
- `europass` (*boolean*) pari a `true` se si desidera un curriculum in formato *europass*
|
||||||
|
- `theme` non disponibile per lo stile europass
|
||||||
|
- `color` blue (predefinito), green, red, orange, grey
|
||||||
|
- `style` classic (predefinito), casual
|
||||||
- `name`
|
- `name`
|
||||||
- `first` (*string*) nome.
|
- `first` (*string*) nome.
|
||||||
- `family` (*string*) cognome.
|
- `family` (*string*) cognome.
|
||||||
|
BIN
examples/europasscv/europasscv.pdf
Normal file
BIN
examples/europasscv/europasscv.pdf
Normal file
Binary file not shown.
45
examples/europasscv/europasscv.yaml
Normal file
45
examples/europasscv/europasscv.yaml
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
---
|
||||||
|
europass: true
|
||||||
|
name:
|
||||||
|
first: John
|
||||||
|
family: Doe
|
||||||
|
address:
|
||||||
|
first: street and number
|
||||||
|
mobile: 0123456789
|
||||||
|
email: john.doe@domain.com
|
||||||
|
cron-sections:
|
||||||
|
- section: Job
|
||||||
|
entries:
|
||||||
|
- year: 2018--2020
|
||||||
|
degree: Job Title
|
||||||
|
institution: Institution
|
||||||
|
city: City
|
||||||
|
grade: Grade
|
||||||
|
- section: Education
|
||||||
|
entries:
|
||||||
|
- year: 2015--2018
|
||||||
|
degree: Degree
|
||||||
|
institution: Institution
|
||||||
|
city: City
|
||||||
|
grade: Grade
|
||||||
|
description: Insert here the description
|
||||||
|
- year: 2010--2015
|
||||||
|
degree: Degree
|
||||||
|
institution: Institution
|
||||||
|
city: City
|
||||||
|
grade: Grade
|
||||||
|
description: Insert here the description
|
||||||
|
sections:
|
||||||
|
- section: Languages
|
||||||
|
items:
|
||||||
|
- left: English
|
||||||
|
right: Good
|
||||||
|
- section: Skills
|
||||||
|
items:
|
||||||
|
- left: Category 1
|
||||||
|
right: xxx, yyy, zzz
|
||||||
|
- left: Category 2
|
||||||
|
right: xxx, yyy, zzz
|
||||||
|
- left: Category 3
|
||||||
|
right: xxx, yyy, zzz
|
||||||
|
---
|
BIN
examples/moderncv-green/moderncv-green.pdf
Normal file
BIN
examples/moderncv-green/moderncv-green.pdf
Normal file
Binary file not shown.
47
examples/moderncv-green/moderncv-green.yaml
Normal file
47
examples/moderncv-green/moderncv-green.yaml
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
---
|
||||||
|
name:
|
||||||
|
first: John
|
||||||
|
family: Doe
|
||||||
|
address:
|
||||||
|
first: street and number
|
||||||
|
mobile: 0123456789
|
||||||
|
email: john.doe@domain.com
|
||||||
|
theme:
|
||||||
|
color: green
|
||||||
|
style: classic
|
||||||
|
cron-sections:
|
||||||
|
- section: Job
|
||||||
|
entries:
|
||||||
|
- year: 2018--2020
|
||||||
|
degree: Job Title
|
||||||
|
institution: Institution
|
||||||
|
city: City
|
||||||
|
grade: Grade
|
||||||
|
- section: Education
|
||||||
|
entries:
|
||||||
|
- year: 2015--2018
|
||||||
|
degree: Degree
|
||||||
|
institution: Institution
|
||||||
|
city: City
|
||||||
|
grade: Grade
|
||||||
|
description: Insert here the description
|
||||||
|
- year: 2010--2015
|
||||||
|
degree: Degree
|
||||||
|
institution: Institution
|
||||||
|
city: City
|
||||||
|
grade: Grade
|
||||||
|
description: Insert here the description
|
||||||
|
sections:
|
||||||
|
- section: Languages
|
||||||
|
items:
|
||||||
|
- left: English
|
||||||
|
right: Good
|
||||||
|
- section: Skills
|
||||||
|
items:
|
||||||
|
- left: Category 1
|
||||||
|
right: xxx, yyy, zzz
|
||||||
|
- left: Category 2
|
||||||
|
right: xxx, yyy, zzz
|
||||||
|
- left: Category 3
|
||||||
|
right: xxx, yyy, zzz
|
||||||
|
---
|
BIN
examples/moderncv/moderncv.pdf
Normal file
BIN
examples/moderncv/moderncv.pdf
Normal file
Binary file not shown.
44
examples/moderncv/moderncv.yaml
Normal file
44
examples/moderncv/moderncv.yaml
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
---
|
||||||
|
name:
|
||||||
|
first: John
|
||||||
|
family: Doe
|
||||||
|
address:
|
||||||
|
first: street and number
|
||||||
|
mobile: 0123456789
|
||||||
|
email: john.doe@domain.com
|
||||||
|
cron-sections:
|
||||||
|
- section: Job
|
||||||
|
entries:
|
||||||
|
- year: 2018--2020
|
||||||
|
degree: Job Title
|
||||||
|
institution: Institution
|
||||||
|
city: City
|
||||||
|
grade: Grade
|
||||||
|
- section: Education
|
||||||
|
entries:
|
||||||
|
- year: 2015--2018
|
||||||
|
degree: Degree
|
||||||
|
institution: Institution
|
||||||
|
city: City
|
||||||
|
grade: Grade
|
||||||
|
description: Insert here the description
|
||||||
|
- year: 2010--2015
|
||||||
|
degree: Degree
|
||||||
|
institution: Institution
|
||||||
|
city: City
|
||||||
|
grade: Grade
|
||||||
|
description: Insert here the description
|
||||||
|
sections:
|
||||||
|
- section: Languages
|
||||||
|
items:
|
||||||
|
- left: English
|
||||||
|
right: Good
|
||||||
|
- section: Skills
|
||||||
|
items:
|
||||||
|
- left: Category 1
|
||||||
|
right: xxx, yyy, zzz
|
||||||
|
- left: Category 2
|
||||||
|
right: xxx, yyy, zzz
|
||||||
|
- left: Category 3
|
||||||
|
right: xxx, yyy, zzz
|
||||||
|
---
|
Loading…
Reference in New Issue
Block a user