Skip to content

Latest commit

 

History

History
executable file
·
104 lines (60 loc) · 2.54 KB

README.md

File metadata and controls

executable file
·
104 lines (60 loc) · 2.54 KB

Json Resume - Material theme

This is the material theme for JSON Resume.

Added projects tag,responsive design.

demo

Getting started

Install Node.js

If you don't know how to install node.js and npm, see these:

Download theme

Lets go ahead and download a copy of the repository.

Install npm packages

We need to install the dependencies. cd into the theme folder we just downloaded and run:

npm install

This will read the local package.json and install the packages listed under dependencies.

Serve theme

While inside the theme folder, simply run:

npm start

You should now see this message:

Preview: http://localhost:4000
Press ctrl-c to stop

Congratulations, you've made it!

The theme development can now begin.

Fill your resume

resume.json is your resume data, modify it to yourself's.

In this template, only summary can be inserted into html tag, such as

{
  "name": "Personal",
  "summary": "<a href=\"http://hectorguo.com/en/projects/\">Projects Page</a>"
}

Custom

resume.hbs is the template file, its syntax is based on handlebars.

style.css defines your styles. Technically, this is completely optional, as you could just write all of your styles in the <style> tags of your resume.template. As the index.js, the contents of the style.css are put into the <style> tags of your compiled theme later, yet again, this is something can change.

License

Available under the MIT license.

中文指南

  1. 首先,确保已经安装 node.jsnpm

  2. 下载该主题包:

点此下载

下载依赖包:

在下载解压后的目录,输入:

npm install
  1. 修改简历

resume.json中修改简历数据,或者直接 在线编辑 并生成你的json版简历。 新增项目经历类目,详情可在样例中查看。

  1. 在当前目录运行:
npm start

此时目录中会生成一个 index.html文件,即简历。