jsonresume-theme-americano
v1.0.8
Published
Simple theme for JSON Resume based on the macchiato theme.
Downloads
31
Readme
Americano Theme
Americano is a JSON Resume theme based on the Macchiato Theme.
Prerequisites
- You have a Linux or OSX machine. Windows should be supported via WSL 2 but has not been tested.
- You have installed a recent version of GNU Make.
Quick Start
You can get up and running quickly with...
make
Then open http://localhost:8080 in your browser.
Using in your own Project
- Create a new project.
npm init
- Install JSON Resume CLI and the theme.
npm install --save-dev resume-cli jsonresume-theme-americano
- Use JSON Resume CLI to render your resume using the theme
npx resume export resume.html --theme americano
Customizations
This theme supports some additional properties on certain objects, see below for specifics and take a look at the Kitchen Sink to see sample JSON.
Company Specific Keywords
Support for company specific keywords via a keywords
array. If present, each entry in the array will be rendered as a chip alongside the specific company.
"work": [{
"keywords": [
"TypeScript",
"Express.js"
]
}
]
Note: For multiple positions at the same company, the keywords
for the most recent position are used.
Company Logos
A work
entry can optionally have company logo via the image
property which will be displayed in the header section for each company.
"work": [
{
"image": "company-logo.jpg",
}
]
License
Licensed under MIT.