0.2.4 • Published 10 months ago
jsonresume-theme-actual-fr v0.2.4
Actual theme for JSON Resume in French
!IMPORTANT This is simply a version of this theme, but with headers translated to French. It functions exactly the same and the documentation doesn't change at all.
Minimalist and modern theme for JSON Resume standard, designed for the v1.0.0 version.
- Only meaningful information
- Single color
- Single font-family
- Single page? Up to you!
Export examples
Maybe you would like to take a look at jsonresume-theme-actual-letter to create your letter.
Table of contents
What is JSON Resume?
JSON Resume is a community driven open source initiative to create JSON-based standard for resumes.
Prerequisites
- node.js runtime with resume-cli
npm install -g resume-cliExport resume
- Create your resume.json file (you can start by editing this)
npm install jsonresume-theme-actual-fr
resume export resume.pdf --format pdf --theme actual-fr
resume export resume.html --format html --theme actual-frContribute
git clone https://github.com/regg00/jsonresume-theme-actual-fr.git
cd jsonresume-theme-actual-fr
npm install
gulpYou can live edit any .scss or .pug file
Support
This theme supports the following JSON paths
resume.basics
{
"basics": {
"name": "Richard Hendriks",
"label": "Software Developer",
"email": "rhendriks@mail.com",
"phone": "(912) 555-4321",
"url": "https://www.richardh.example.com",
"summary": "Lorem ipsum...",
"location": {
"city": "San Francisco",
"countryCode": "US",
"region": "California"
},
"profiles": [
{
"url": "https://domain.com/rhendricks"
}
]
}
}resume.basics.nameandresume.basics.labelare requiredresume.basics.summarysupports markdown
resume.work
{
"work": [
{
"name": "Facebook",
"location": "California, United States",
"position": "Software Engineer",
"url": "https://www.facebook.com/",
"startDate": "2016-11-17",
"endDate": "2018-07-22",
"summary": "Lorem ipsum...",
"highlights": [
"Vitae purus faucibus ornare suspendisse",
"Ut enim blandit volutpat maecenas"
]
}
]
}resume.work.summarysupports markdown
resume.volunteer
{
"volunteer": [
{
"organization": "Animal Refuge",
"position": "Supervisor",
"url": "https://example.com/",
"startDate": "2012-10-11",
"endDate": "2014-12-24",
"summary": "Lorem ipsum...",
"highlights": ["Maecenas at dictum sem", "Ut ac ex ac ipsum commodo"]
}
]
}resume.volunteer.summarysupports markdown
resume.education
{
"education": [
{
"institution": "University of Stanford",
"url": "https://www.stanford.edu/",
"area": "Computer Science",
"studyType": "Master"
}
]
}resume.education.areaandresume.education.studyTypesupports markdown
resume.awards
{
"awards": [
{
"title": "Website of the day",
"awarder": "Awwward",
"summary": "Lorem ipsum..."
}
]
}resume.awards.summarysupports markdown
resume.certificates
{
"certificates": [
{
"name": "AWS Certified Solutions Architect",
"issuer": "Amazon Web Services",
"url": "https://www.your-badge.com"
}
]
}resume.certificates.namesupports markdown
resume.publications
{
"publications": [
{
"name": "Chasing the Higgs Boson",
"publisher": "The New York Times",
"releaseDate": "2013-03-04",
"url": "https://www.nytimes.com/",
"summary": "Lorem ipsum..."
}
]
}resume.publications.summarysupports markdown
resume.skills
{
"skills": [
{
"name": "Languages",
"keywords": ["Java", "Python"]
}
]
}resume.languages
{
"languages": [
{
"language": "English",
"fluency": "Native"
}
]
}resume.interests
{
"interests": [
{
"name": "Open Source"
}
]
}resume.references
{
"references": [
{
"name": "Robert C. Martin",
"reference": "Lorem ipsum..."
}
]
}resume.projects
{
"projects": {
"name": "Node.js",
"description": "Lorem ipsum...",
"highlights": [
"Commodo elit at imperdiet dui",
"Id volutpat lacus laoreet non"
],
"startDate": "2011-08-26",
"endDate": "2018-05-12",
"url": "https://nodejs.org/",
"roles": ["contributor", "evangelist"]
}
}resume.projects.descriptionsupports markdown