1.0.1 • Published 4 years ago
jsonresume-theme-anthonyjdella-actual v1.0.1
Customized JSON Resume Theme: Actual
🖼️ This is a slightly tweaked version of the Actual theme. Tweaked to fit my design preferences.
Actual theme for JSON Resume
Minimalist and modern theme for JSON Resume standard, designed for the v1.0.0 version.
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
resume export resume.pdf --format pdf --theme actual
resume export resume.html --format html --theme actualContribute
git clone git@github.com:davcd/jsonresume-theme-actual.git
cd jsonresume-theme-actual
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": "http://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": "http://facebook.com",
"startDate": "2016-11-17",
"summary": "Lorem ipsum...",
"highlights": [
"Vitae purus faucibus ornare suspendisse",
"Ut enim blandit volutpat maecenas"
]
}
]
}resume.work.summarysupports markdown
resume.projects
{
"projects": {
"name": "Node.js",
"description": "Lorem ipsum...",
"highlights": [
"Commodo elit at imperdiet dui",
"Id volutpat lacus laoreet non"
],
"url": "https://nodejs.org/",
"roles": [
"contributor",
"evangelist"
]
}
}resume.projects.descriptionsupports markdown
resume.skills
{
"skills": [
{
"name": "Languages",
"keywords": [
"Java",
"Python"
]
}
]
}resume.education
{
"education": [
{
"institution": "University of Stanford",
"url": "https://www.stanford.edu/",
"area": "Computer Science",
"studyType": "Master"
}
]
}resume.work.areaandresume.work.studyTypesupports markdown
resume.certificates
{
"certificates": [
{
"name": "AWS Certified Solutions Architect",
"url": "https://www.your-badge.com",
"issuer": "Amazon Web Services"
}
]
}resume.certificates.namesupports markdown
resume.awards
{
"awards": [
{
"title": "Website of the day",
"awarder": "Awwward",
"summary": "Lorem ipsum..."
}
]
}resume.awards.summarysupports markdown
resume.languages
{
"languages": [
{
"language": "English",
"fluency": "Native"
}
]
}resume.interests
{
"interests": [
{
"name": "Open Source"
}
]
}