This is the my own custom theme to create a resume with JSON Resume. It is based on Bootstrap CSS and features a printable 2-column layout.
See example here (don't forget to check out the print view)
Note: Most browsers hide background colors in the print view by default. You need to enable background colors to generate a fully featured print view.
To get started, make sure you installed node.js and npm. Node version should be >= 20.
- Clone this repository
git clone https://github.com/umennel/jsonresume-theme-umennel- Clone the
resumedlocal theme example template with degit
npx degit rbardini/resumed/examples/with-local-theme- Copy or link the content of this repo as a subdirectory
- Modify the file package.json in the local theme example template to look like this:
{
"private": true,
"type": "module",
"scripts": {
"init": "resumed init",
"start": "resumed --theme jsonresume-theme-umennel"
},
"dependencies": {
"jsonresume-theme-umennel": "file:./jsonresume-theme-umennel",
"resumed": "^3.0.0"
}
}- Install dependencies, create and render resume:
npm install
npm run init
npm startTo build your own resume, create a resume.json file in the current folder and follow the json resume schema.
Note: The theme uses Font Awesome icons to generate the network icons in the contact section. If you don't see an icon displayed, check if there is a Font Awesome icon available for your specific network.
I addition to the the json resume schema, this theme also supports:
- adding
keywordsto aworkitem
The easiest way to customize the layout and style of this theme is by modifying style.css. You may also want to adapt print.css to achieve a specific print style. The print style is very useful for PDF generation as well.
Feel free to fork the project and submit pull requests or open an issue if you find something not working for you.
Available under GPLv3.