Skip to content

NuclearRedeye/jsonresume-theme-americano

 
 

Repository files navigation

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

  1. Create a new project.
npm init
  1. Install JSON Resume CLI and the theme.
npm install --save-dev resume-cli jsonresume-theme-americano
  1. 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.

About

Custom JSONResume theme based on the macchiato theme

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Handlebars 66.1%
  • CSS 21.7%
  • JavaScript 8.4%
  • Makefile 3.8%