diff --git a/README.md b/README.md index f35b16d..32e62ef 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,10 @@ docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` norangebit/pandock ### 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` - `first` (*string*) name. - `family` (*string*) surname. @@ -143,6 +146,9 @@ docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` norangebit/pandock ### Variabili - `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` - `first` (*string*) nome. - `family` (*string*) cognome. diff --git a/examples/europasscv/europasscv.pdf b/examples/europasscv/europasscv.pdf new file mode 100644 index 0000000..e193ba5 Binary files /dev/null and b/examples/europasscv/europasscv.pdf differ diff --git a/examples/europasscv/europasscv.yaml b/examples/europasscv/europasscv.yaml new file mode 100644 index 0000000..78720f6 --- /dev/null +++ b/examples/europasscv/europasscv.yaml @@ -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 +--- diff --git a/examples/moderncv-green/moderncv-green.pdf b/examples/moderncv-green/moderncv-green.pdf new file mode 100644 index 0000000..e6caa93 Binary files /dev/null and b/examples/moderncv-green/moderncv-green.pdf differ diff --git a/examples/moderncv-green/moderncv-green.yaml b/examples/moderncv-green/moderncv-green.yaml new file mode 100644 index 0000000..10a427a --- /dev/null +++ b/examples/moderncv-green/moderncv-green.yaml @@ -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 +--- diff --git a/examples/moderncv/moderncv.pdf b/examples/moderncv/moderncv.pdf new file mode 100644 index 0000000..9c5eb72 Binary files /dev/null and b/examples/moderncv/moderncv.pdf differ diff --git a/examples/moderncv/moderncv.yaml b/examples/moderncv/moderncv.yaml new file mode 100644 index 0000000..b72d1d2 --- /dev/null +++ b/examples/moderncv/moderncv.yaml @@ -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 +---