[
  {
    "path": ".github/FUNDING.yml",
    "content": "# These are supported funding model platforms\n\ncustom: https://www.buymeacoffee.com/crispgm\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE.md",
    "content": "<!--\n  Hi! Thanks for considering to file a bug with Crisp Minimal Résumé. Please take the time to\n  answer the basic questions. You can convert `[ ]` into `[x]` to check boxes (or submit\n  and check.) If there is no need for certain fields like output and redirection, please delete\n  those headers before submitting.  We know not all tickets require those steps.\n  Otherwise, please try to be as detailed as possible.\n\n  Thanks!\n-->\n\n- [ ] I believe this to be a bug, not a question about using Crisp Minimal Résumé.\n- [ ] This is a feature request.\n\n---\n\n## My OS\n\n- [ ] I am on (or have tested on) ***macOS*** 10+\n- [ ] I am on (or have tested on) ***Ubuntu*** GNU/Linux\n- [ ] I am on (or have tested on) ***Other*** GNU/Linux\n- [ ] I am on (or have tested on) ***Windows*** 10+\n\n## My Ruby/Jekyll Version\n\n<!--\n  Checkout it with:\n  ```sh\n  ruby --version\n  jekyll --version\n  ```\n-->\n\n---\n\n## My Issue\n\n- [ ] I cannot install Gem.\n- [ ] I cannot run/debug the theme locally.\n- [ ] My résumé does not render correctly.\n- [ ] My résumé has problem with Github Pages.\n- [ ] Other. (Replace with your description here.)\n\n## My Reproduction Steps\n\n<!--\n  Update with your reproduction steps\n-->\n1. Step 1\n2. Step 2\n3. Step 3\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: build\non: [push, pull_request]\njobs:\n  ci:\n    name: run\n    runs-on: ubuntu-latest\n    strategy:\n      matrix:\n        ruby: [3.0.0, 2.6.0]\n    steps:\n      - uses: actions/checkout@master\n      - uses: mstachniuk/ci-skip@v1\n        with:\n          fail-fast: true\n      - name: Set up Ruby\n        uses: ruby/setup-ruby@v1\n        with:\n          ruby-version: ${{ matrix.ruby }}\n      - name: \"Update Rubygems & Bundler\"\n        run: \"gem update --system --no-document && gem update bundler --no-document\"\n      - name: \"Install Bundler 2\"\n        run: 'gem install bundler -v \"2.0.1\" --force'\n      - name: \"Setup bundle\"\n        run: \"bundle install --jobs 4 --retry 3\"\n      - name: \"Run Test Suite\"\n        run: \"bash script/cibuild\"\n"
  },
  {
    "path": ".gitignore",
    "content": "/_site/\nGemfile.lock\n*.gem\n.sass-cache/\nyarn.lock\nnode_modules\n"
  },
  {
    "path": ".scss-lint.yml",
    "content": "scss_files: '_sass/*.scss'\nlinters:\n  PropertySortOrder:\n    enabled: false\n"
  },
  {
    "path": "Gemfile",
    "content": "source \"https://rubygems.org\"\n\ngemspec\n\ngem 'scss_lint', require: false\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2021 David Zhang\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# Crisp Minimal Résumé\n\n<p align=\"center\">\n  <img src=\"screenshots/resume-desktop.png\" width=\"578\" />\n  <img src=\"screenshots/resume-mobile.png\" width=\"220\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/crispgm/resume/workflows/build/badge.svg\" alt=\"GitHub CI\" />\n  <a href=\"https://badge.fury.io/rb/jekyll-theme-minimal-resume\">\n    <img src=\"https://badge.fury.io/rb/jekyll-theme-minimal-resume.svg\" alt=\"Gem Version\" />\n  </a>\n  <a href=\"https://badge.fury.io/js/hexo-theme-crisp-minimal-resume\">\n    <img src=\"https://badge.fury.io/js/hexo-theme-crisp-minimal-resume.svg\" alt=\"npm version\" />\n  </a>\n</p>\n\n## Introduction\n\n[English](/README.md) [简体中文](/README_zh-CN.md)\n\nThis is a responsive minimal résumé template made by Crisp, powered by [Jekyll](http://jekyllrb.com/). And we also provide an official [Hexo port](/port-hexo/README.md) for Hexo users.\n\nYou may config all the data in `yaml` and make it your own résumé. Then, you might use on GitHub Pages, your website, or wherever you want.\n\n[DEMO](https://crispgm.github.io/resume/resume.html)\n\n## Features\n\n- Simple, elegant, and minimal design\n- PC and mobile friendly, but it looks better on PC\n- PDF supports and print friendly\n- Flexible and extensible\n\n## Usage\n\n### Local Mode\n\n1. Clone the repo\n\n   ```shell\n   git clone https://github.com/crispgm/resume.git\n   ```\n\n2. Install Jekyll\n\n   ```shell\n   gem install jekyll\n   ```\n\n3. Config your résumé data\n\n   The `baseurl` is required in `_config.yml` if you serve this page as part of your website. And your contact information, **EDUCATION**, **SKILLS**, **EXPERIENCE**, and **PROJECTS** data will be set in `_data/resume.yml`.\n\n4. Run and Debug\n\n   ```shell\n   jekyll serve\n   ```\n\n5. Build\n\n   ```shell\n   jekyll build\n   ```\n\n### Gem-based Theme\n\n1. Create a `Gemfile`\n\n   ```shell\n   source \"https://rubygems.org\"\n\n   gem \"jekyll-theme-minimal-resume\"\n   ```\n\n   And then,\n\n   ```shell\n   bundle install\n   ```\n\n2. Init `_config.yml`\n\n   ```yaml\n   title: Résumé Title\n   baseurl: \"/resume/\"\n   theme: \"jekyll-theme-minimal-resume\"\n   ```\n\n3. Create a `index.html`\n\n   ```yaml\n   ---\n   layout: resume\n   ---\n\n   ```\n\n4. Create `_data/resume.yml` and fill in your resume data. [Example data is available here](/_data/resume.ytml).\n\n## Data Format\n\n### Contact\n\n```yaml\ncontact:\n  - icon: fa-envelope\n    text: youremail@example.com\n  - icon: fa-phone-square\n    text: your-phone-num\n  - icon: fa-globe\n    text: your-website.com\n    link: https://crispgm.github.io/resume/resume.html\n```\n\nFontAwesome iconfont is embedded, so use the `fa-` class name as icon. `link` is optional, present if you want a link for your web version.\n\n## Colors\n\nThere are a set of colorscheme. `color` may be specified in `_config.yml`. The default colorscheme is gray.\n\n```yaml\ncolor: gray\n```\n\nColors powered by [Open-Color](https://yeun.github.io/open-color/):\n\n- red\n- pink\n- grape\n- violet\n- indigo\n- blue\n- cyan\n- teal\n- green\n- lime\n- yellow\n- orange\n\nColors powered by [Nord](https://www.nordtheme.com/):\n\n- nord\n\n<img src=\"screenshots/resume-with-color.png\" width=\"578\" />\n\n## Extending Sections\n\n1. Add new section in `_data/resume.yml`\n\n   ```yaml\n   languages:\n     - name: English\n       proficiency: Professional working proficiency\n     - name: Mandarin Chinese\n       proficiency: Native or bilingual proficiency\n   ```\n\n2. Add section to `_layouts/resume.html`:\n\n   ```html\n   <section id=\"languages\">\n     <div class=\"section-title\">Language</div>\n     <div class=\"section-content\">\n       {% for lang in site.data.resume.languages %}\n       <div class=\"block\">\n         <div class=\"block-title\">{{ lang.name }}</div>\n         <div class=\"block-content\">{{ lang.proficiency }}</div>\n       </div>\n       {% endfor %}\n     </div>\n   </section>\n   ```\n\n## Showcases\n\nFeel free to add yours here.\n\n- [David Zhang](https://crispgm.com/resume/)\n\n## Donation\n\n- [Buy Me A Coffee](https://www.buymeacoffee.com/crispgm)\n\n## License\n\n[![license](https://img.shields.io/github/license/crispgm/resume.svg)](/LICENSE)\n"
  },
  {
    "path": "README_zh-CN.md",
    "content": "# Crisp Minimal Résumé\n\n<p align=\"center\">\n  <img src=\"screenshots/resume-desktop.png\" width=\"578\" />\n  <img src=\"screenshots/resume-mobile.png\" width=\"220\" />\n</p>\n\n<p align=\"center\">\n  <img src=\"https://github.com/crispgm/resume/workflows/build/badge.svg\" alt=\"GitHub CI\" />\n  <a href=\"https://badge.fury.io/rb/jekyll-theme-minimal-resume\">\n    <img src=\"https://badge.fury.io/rb/jekyll-theme-minimal-resume.svg\" alt=\"Gem Version\" />\n  </a>\n  <a href=\"https://badge.fury.io/js/hexo-theme-crisp-minimal-resume\">\n    <img src=\"https://badge.fury.io/js/hexo-theme-crisp-minimal-resume.svg\" alt=\"npm version\" />\n  </a>\n</p>\n\n## 简介\n\n[English](/README.md) [简体中文](/README_zh-CN.md)\n\n极简风格的响应式简历模板，基于 [Jekyll](http://jekyllrb.com/)，可以直接部署在 GitHub Pages 上。\n\n通过配置 `yaml` 文件，就可以完成简历，并部署在网站上或是输出成 PDF。\n\n[示例](https://crispgm.github.io/resume/resume_zh-CN.html)\n\n我们现在为 Hexo 用户提供了官方移植的 [Hexo 版本](/port-hexo/README.md)。未来，我们将支持 Hugo 主题。\n\n## 功能和特点\n\n- 简单、优雅、极简的设计\n- 桌面和移动友好，但桌面上的效果会更好\n- 支持输出 PDF 并且打印机友好\n- 简单的扩展方式\n\n## 安装和使用\n\n### 本地模式\n\n1. 克隆（可以先 fork）\n\n   ```shell\n   git clone https://github.com/crispgm/resume.git\n   ```\n\n2. 安装 Jekyll\n\n   ```shell\n   gem install jekyll\n   ```\n\n3. 配置简历数据\n\n   首先在 `_config.yml` 中配置 `baseurl`，如果需要部署在网站的话。在 `_data/resume.yml` 中填写教育（education）、技能（skills）、工作经验（experience）和项目（projects）。\n\n4. 运行和预览\n\n   ```shell\n   jekyll serve\n   ```\n\n5. 构建\n\n   ```shell\n   jekyll build\n   ```\n\n### Gem 模式\n\n1. 创建 `Gemfile`\n\n   ```shell\n   source \"https://rubygems.org\"\n\n   gem \"jekyll-theme-minimal-resume\"\n   ```\n\n   并执行，\n\n   ```shell\n   bundle install\n   ```\n\n2. 初始化 `_config.yml`\n\n   ```yaml\n   title: Résumé Title\n   baseurl: \"/resume/\"\n   theme: \"jekyll-theme-minimal-resume\"\n   ```\n\n3. 创建 `index.html`\n\n   ```yaml\n   ---\n   layout: resume\n   ---\n\n   ```\n\n4. 创建 `_data/resume.yml` 并填写你的简历数据。[示例数据可以参考这里](/_data/resume.ytml)。\n\n## 数据格式\n\n### 联系信息\n\n```yaml\ncontact:\n  - icon: fa-envelope\n    text: youremail@example.com\n  - icon: fa-phone-square\n    text: your-phone-num\n  - icon: fa-globe\n    text: your-website.com\n    link: https://crispgm.github.io/resume/resume.html\n```\n\n模板内置了 FontAwesome 图标字体，请使用`fa-`开头的类名作为图标。`link`是可选项，如果需要在 Web 或 PDF 版中支持链接，请填写此项。\n\n## 颜色\n\n模板内置了一些主题配色，可以通过 `_config.yml` 中的 `color` 进行修改。默认是灰色 Gray。\n\n```yaml\ncolor: gray\n```\n\n基于 [Open-Color](https://yeun.github.io/open-color/) 的配色：\n\n- red\n- pink\n- grape\n- violet\n- indigo\n- blue\n- cyan\n- teal\n- green\n- lime\n- yellow\n- orange\n\n基于 [Nord](https://www.nordtheme.com/) 的配色:\n\n- nord\n\n<img src=\"screenshots/resume-with-color.png\" width=\"578\" />\n\n## 扩展简历内容\n\n1. 在 `_data/resume.yml` 中增加段落，比如增加显示你的语言水平：\n\n   ```yaml\n   languages:\n     - name: 英语\n       proficiency: 工作熟练\n     - name: 中文\n       proficiency: 母语\n   ```\n\n2. 把读取代码加入 `_layouts/resume.html`:\n\n   ```html\n   <section id=\"languages\">\n     <div class=\"section-title\">Language</div>\n     <div class=\"section-content\">\n       {% for lang in site.data.resume.languages %}\n       <div class=\"block\">\n         <div class=\"block-title\">{{ lang.name }}</div>\n         <div class=\"block-content\">{{ lang.proficiency }}</div>\n       </div>\n       {% endfor %}\n     </div>\n   </section>\n   ```\n\n## Showcases\n\n欢迎在此提交你的简历。\n\n- [David Zhang](https://crispgm.com/resume/)\n\n## 捐助\n\n- [Buy Me A Coffee](https://www.buymeacoffee.com/crispgm)\n\n## 协议\n\n[![license](https://img.shields.io/github/license/crispgm/resume.svg)](/LICENSE)\n"
  },
  {
    "path": "Rakefile",
    "content": "desc \"Serve\"\ntask :serve do\n  sh \"bundle exec jekyll serve --draft --future --livereload\"\nend\n\ndesc \"Serve Gem\"\ntask :sg do\n  sh \"bundle exec jekyll serve --draft --future --livereload --config=_config_gem.yml\"\nend\n\ndesc \"Serve Colorful\"\ntask :sc do\n  sh \"bundle exec jekyll serve --draft --future --livereload --config=_config_colorful.yml\"\nend\n\ndesc \"Cleanup\"\ntask :cleanup do\n  sh \"rm jekyll-theme-minimal-resume-*.gem\"\nend\n"
  },
  {
    "path": "_config.yml",
    "content": "title: Résumé\nbaseurl: \"/resume/\"\nexclude:\n  - README.md\n  - \"README_zh-CN.md\"\n  - LICENSE\n  - Gemfile\n  - Gemfile.lock\n  - jekyll-crisp-minimal-resume.gemspec\n  - /script\n  - /screenshots\n  - /fixtures\n  - Rakefile\n"
  },
  {
    "path": "_config_colorful.yml",
    "content": "title: Résumé\nbaseurl: \"/resume/\"\ncolor: nord\nexclude:\n  - README.md\n  - \"README_zh-CN.md\"\n  - LICENSE\n  - Gemfile\n  - Gemfile.lock\n  - jekyll-crisp-minimal-resume.gemspec\n  - /script\n  - /screenshots\n  - /fixtures\n  - Rakefile\n"
  },
  {
    "path": "_config_gem.yml",
    "content": "title: Résumé\nbaseurl: \"/resume/\"\ntheme: \"jekyll-theme-minimal-resume\"\nexclude:\n  - README.md\n  - \"README_zh-CN.md\"\n  - LICENSE\n  - Gemfile\n  - Gemfile.lock\n  - jekyll-crisp-minimal-resume.gemspec\n  - /script\n  - /screenshots\n  - /fixtures\n  - Rakefile\n"
  },
  {
    "path": "_data/resume.yml",
    "content": "title: Résumé\nname: YOUR NAME\njobtitle: Your Job Title\ncontact:\n  - icon: fa-envelope\n    text: youremail@example.com\n  - icon: fa-phone-square\n    text: your-phone-num\n  - icon: fa-globe\n    text: your-website.com\n    link: https://crispgm.github.io/resume/resume.html\n  - icon: fa-github\n    text: your-github\n    link: https://github.com/crispgm/resume\neducation:\n  - university: Your First University\n    duration: Jul 2011 - Dec 2012\n    location: Consectetur adipiscing elit\n    major: Lorem ipsum dolor sit amet\n  - university: Your Second University\n    duration: Aug 2007 - Jun 2011\n    location: Ut enim ad minim veniam\n    major: Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat\nskills:\n  - title: Skill Group 1\n    items: Lorem, Ipsum, Dolor, Sit, Amet\n  - title: Skill Group 2\n    items: Consectetur, Adipiscing, Elit\n  - title: Skill Group 3\n    items: Sed do, Eiusmod, Tempor, Incididunt\nexperience:\n  - title: Job Title 1\n    duration: Apr 2016 - Now\n    company: Your 1st, Inc.\n    description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\n  - title: Job Title 2\n    duration: Apr 2013 - Mar 2016\n    company: Your 2nd, Inc.\n    description: Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n  - title: Job Title 3\n    duration: Dec 2011 - Mar 2012\n    company: Your 3rd Co, Ltd.\n    description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\nprojects:\n  - name: Project Name 1\n    description: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n    contribution: Contributor.\n  - name: Project Name 2\n    description: Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n    contribution: Creator and maintainer.\nlanguages:\n  - name: English\n    proficiency: Work proficiency\n  - name: Mandarin Chinese\n    proficiency: Native"
  },
  {
    "path": "_data/resume_zhcn.yml",
    "content": "title: \"简历\"\nname: \"王小二\"\njobtitle: \"高级软件研发工程师\"\ncontact:\n  - icon: fa-envelope\n    text: wangxiao@er.com\n  - icon: fa-phone-square\n    text: (+86) 13800138000\n  - icon: fa-globe\n    text: wangxiaoer.com\n    link: https://crispgm.github.io/resume/resume_zh-CN.html\n  - icon: fa-github\n    text: wangxiaoer\n    link: https://github.com/crispgm/resume\neducation:\n  - university: \"攻城科技大学\"\n    duration: \"2011/07 - 2012/12\"\n    location: \"北京\"\n    major: \"工学硕士，计算机科学与技术\"\n  - university: \"攻城大学\"\n    duration: \"2007/08 - 2011/06\"\n    location: \"南京\"\n    major: \"工学学士，计算机科学与技术\"\nskills:\n  - title: \"程序设计\"\n    items: \"C/C++, Java, Python, Ruby, PHP, HTML/CSS, JavaScript, Vue\"\n  - title: \"计算机系统\"\n    items: \"Linux/Unix, 设计模式, 敏捷开发, 面向对象, 数据库设计, 多线程编程\"\n  - title: \"其它\"\n    items: \"Sublime Text, git, shell\"\nexperience:\n  - title: \"高级研发工程师\"\n    duration: \"2016/06 - 至今\"\n    company: \"T 公司\"\n    description: \"我在此项目负责了哪些工作，分别在哪些地方做得出色/和别人不一样/成长快，这个项目中，我最困难的问题是什么，我采取了什么措施，最后结果如何。这个项目中，我最自豪的技术细节是什么，为什么，实施前和实施后的数据对比如何，同事和领导对此的反应如何。\"\n  - title: \"研发工程师\"\n    duration: \"2013/01 - 2016/05\"\n    company: \"A 公司\"\n    description: \"我在此项目负责了哪些工作，分别在哪些地方做得出色/和别人不一样/成长快，这个项目中，我最困难的问题是什么，我采取了什么措施，最后结果如何。这个项目中，我最自豪的技术细节是什么，为什么，实施前和实施后的数据对比如何，同事和领导对此的反应如何。\"\n  - title: \"研发工程师（实习）\"\n    duration: \"2011/02 - 2012/12\"\n    company: \"B 公司\"\n    description: \"我在此项目负责了哪些工作，分别在哪些地方做得出色/和别人不一样/成长快，这个项目中，我最困难的问题是什么，我采取了什么措施，最后结果如何。这个项目中，我最自豪的技术细节是什么，为什么，实施前和实施后的数据对比如何，同事和领导对此的反应如何。\"\nprojects:\n  - name: \"Crisp Resume\"\n    description: \"一个基于 Jekyll 的极简风格响应式简历模板\"\n    contribution: \"贡献者\"\n  - name: \"你的项目\"\n    description: \"一个非常强大的开源项目，使用了若干强力技术，大大提升了生产力\"\n    contribution: \"创建者和维护者\"\nlanguages:\n  - name: \"英语\"\n    proficiency: \"工作熟练\"\n  - name: \"中文\"\n    proficiency: \"母语\""
  },
  {
    "path": "_includes/foot.html",
    "content": "    <footer>\n      Made with <i class=\"fa fa-heart aria-hidden=\"true></i> by <a href=\"https://github.com/crispgm/resume\">David Zhang</a> <span class=\"print\">( <a href=\"javascript:window.print()\">PDF</a> )</span>\n    </footer>\n"
  },
  {
    "path": "_includes/head.html",
    "content": "  <head>\n    <title>{{ site.data.resume.title }}</title>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link href=\"https://fonts.googleapis.com/css?family=Noto+Sans\" rel=\"stylesheet\">\n    <link href=\"https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"{{ site.baseurl }}/assets/css/resume.css\">\n  </head>\n"
  },
  {
    "path": "_layouts/default.html",
    "content": "---\nlayout: null\n---\n<!DOCTYPE html>\n<html>\n  {% include head.html %}\n  <body>\n  {{ content }}\n  {% include foot.html %}\n  </body>\n</html>\n"
  },
  {
    "path": "_layouts/resume.html",
    "content": "---\nlayout: default\n---\n\n    <div class=\"container\">\n      <header>\n        <div class=\"name-wrapper\">\n          <div id=\"fullname\" class=\"title\">\n            {{ site.data.resume.name }}\n          </div>\n          <div id=\"jobtitle\" class=\"sub-title\">\n            {{ site.data.resume.jobtitle }}\n          </div>\n        </div>\n        <div id=\"contact\" class=\"contact\">\n          {% for item in site.data.resume.contact %}\n          <div class=\"contact-item\">\n            {% if item.link %}\n            <a href=\"{{ item.link }}\">\n            {% endif %}\n            <i class=\"fa {{ item.icon }} aria-hidden=\"true></i> {{ item.text }}\n            {% if item.link %}\n            </a>\n            {% endif %}\n          </div>\n          {% endfor %}\n        </div>\n      </header>\n\n      <section id=\"education\">\n        <div class=\"section-title\">\n          Education\n        </div>\n        <div class=\"section-content\">\n          {% for edu in site.data.resume.education %}\n          <div class=\"block\">\n            <div class=\"block-title\">\n              {{ edu.university }}\n            </div>\n            <div class=\"block-subtitle\">\n              {{ edu.duration }} | {{ edu.location }}\n            </div>\n            <div class=\"block-content\">\n              {{ edu.major }}\n            </div>\n          </div>\n          {% endfor %}\n        </div>\n      </section>\n\n      <section id=\"skills\">\n        <div class=\"section-title\">\n          Skills\n        </div>\n        <div class=\"section-content\">\n          {% for skill in site.data.resume.skills %}\n          <div class=\"block\">\n            <div class=\"block-title\">\n              {{ skill.title }}\n            </div>\n            <div class=\"block-content\">\n              {{ skill.items }}\n            </div>\n          </div>\n          {% endfor %}\n        </div>\n      </section>\n\n      <section id=\"experience\">\n        <div class=\"section-title\">\n          Experience\n        </div>\n        <div class=\"section-content\">\n          {% for exp in site.data.resume.experience %}\n          <div class=\"block\">\n            <div class=\"block-title\">\n              {{ exp.title }}\n            </div>\n            <div class=\"block-subtitle\">\n              {{ exp.duration }} | {{ exp.company }}\n            </div>\n            <div class=\"block-content\">\n              {{ exp.description }}\n            </div>\n          </div>\n          {% endfor %}\n        </div>\n      </section>\n\n      <section id=\"projects\">\n        <div class=\"section-title\">\n          Projects\n        </div>\n        <div class=\"section-content\">\n          {% for project in site.data.resume.projects %}\n          <div class=\"block\">\n            <div class=\"block-title\">\n              {{ project.name }}\n            </div>\n            <div class=\"block-subtitle\">\n              {{ project.contribution }}\n            </div>\n            <div class=\"block-content\">\n              {{ project.description }}\n            </div>\n          </div>\n          {% endfor %}\n        </div>\n      </section>\n\n      <section id=\"languages\">\n        <div class=\"section-title\">\n          Languages\n        </div>\n        <div class=\"section-content section-flex\">\n          {% for language in site.data.resume.languages %}\n          <div class=\"block block-square\">\n            <div class=\"block-title\">\n              {{ language.name }}\n            </div>\n            <div class=\"block-content\">\n              {{ language.proficiency }}\n            </div>\n          </div>\n          {% endfor %}\n        </div>\n      </section>\n    </div>\n"
  },
  {
    "path": "_layouts/resume_zh_cn.html",
    "content": "---\nlayout: default\n---\n\n    <div class=\"container\">\n      <header>\n        <div class=\"name-wrapper\">\n          <div id=\"fullname\" class=\"title\">\n            {{ site.data.resume_zhcn.name }}\n          </div>\n          <div id=\"jobtitle\" class=\"sub-title\">\n            {{ site.data.resume_zhcn.jobtitle }}\n          </div>\n        </div>\n        <div id=\"contact\" class=\"contact\">\n          {% for item in site.data.resume_zhcn.contact %}\n          <div class=\"contact-item\">\n            {% if item.link %}\n            <a href=\"{{ item.link }}\">\n            {% endif %}\n            <i class=\"fa {{ item.icon }} aria-hidden=\"true></i> {{ item.text }}\n            {% if item.link %}\n            </a>\n            {% endif %}\n          </div>\n          {% endfor %}\n        </div>\n      </header>\n\n      <section id=\"education\">\n        <div class=\"section-title\">\n          教育\n        </div>\n        <div class=\"section-content\">\n          {% for edu in site.data.resume_zhcn.education %}\n          <div class=\"block\">\n            <div class=\"block-title\">\n              {{ edu.university }}\n            </div>\n            <div class=\"block-subtitle\">\n              {{ edu.duration }} | {{ edu.location }}\n            </div>\n            <div class=\"block-content\">\n              {{ edu.major }}\n            </div>\n          </div>\n          {% endfor %}\n        </div>\n      </section>\n\n      <section id=\"skills\">\n        <div class=\"section-title\">\n          专业技能\n        </div>\n        <div class=\"section-content\">\n          {% for skill in site.data.resume_zhcn.skills %}\n          <div class=\"block\">\n            <div class=\"block-title\">\n              {{ skill.title }}\n            </div>\n            <div class=\"block-content\">\n              {{ skill.items }}\n            </div>\n          </div>\n          {% endfor %}\n        </div>\n      </section>\n\n      <section id=\"experience\">\n        <div class=\"section-title\">\n          工作经历\n        </div>\n        <div class=\"section-content\">\n          {% for exp in site.data.resume_zhcn.experience %}\n          <div class=\"block\">\n            <div class=\"block-title\">\n              {{ exp.title }}\n            </div>\n            <div class=\"block-subtitle\">\n              {{ exp.duration }} | {{ exp.company }}\n            </div>\n            <div class=\"block-content\">\n              {{ exp.description }}\n            </div>\n          </div>\n          {% endfor %}\n        </div>\n      </section>\n\n      <section id=\"projects\">\n        <div class=\"section-title\">\n          项目\n        </div>\n        <div class=\"section-content\">\n          {% for project in site.data.resume_zhcn.projects %}\n          <div class=\"block\">\n            <div class=\"block-title\">\n              {{ project.name }}\n            </div>\n            <div class=\"block-subtitle\">\n              {{ project.contribution }}\n            </div>\n            <div class=\"block-content\">\n              {{ project.description }}\n            </div>\n          </div>\n          {% endfor %}\n        </div>\n      </section>\n\n      <section id=\"languages\">\n        <div class=\"section-title\">\n          语言\n        </div>\n        <div class=\"section-content section-flex\">\n          {% for language in site.data.resume_zhcn.languages %}\n          <div class=\"block block-square\">\n            <div class=\"block-title\">\n              {{ language.name }}\n            </div>\n            <div class=\"block-content\">\n              {{ language.proficiency }}\n            </div>\n          </div>\n          {% endfor %}\n        </div>\n      </section>\n    </div>\n"
  },
  {
    "path": "_sass/_body.scss",
    "content": "section {\n  display: flex;\n  padding-top: 2.4rem;\n  padding-bottom: 2.4rem;\n  padding-left: .2rem;\n  border-bottom: .1rem solid $secondary-color;\n  hyphens: auto;\n}\n\n.section-title {\n  font-size: 1.6rem;\n  text-align: left;\n  min-width: 10rem;\n}\n\n// scss-lint:disable EmptyRule\n.section-content {\n}\n\n.section-flex {\n  display: flex;\n  flex-wrap: wrap;\n}\n\n.block {\n  margin-bottom: 2rem;\n\n  &:last-child {\n    margin-bottom: 0;\n  }\n}\n\n.block-square {\n  width: 18rem;\n\n  &:nth-last-child(2) {\n    margin-bottom: 0;\n  }\n}\n\n.block-title {\n  font-size: 1.2rem;\n  margin-bottom: .4rem;\n  font-weight: bold;\n}\n\n.block-subtitle {\n  font-size: 1rem;\n  margin-bottom: 1rem;\n  color: $secondary-color;\n}\n\n.block-content {\n  font-size: 1rem;\n  line-height: 1.5;\n}\n\n@media screen and (max-width: $breakpoint) {\n  section {\n    display: block;\n    padding-top: 2rem;\n    padding-bottom: 2rem;\n  }\n\n  .section-title {\n    text-align: center;\n    margin-bottom: 2rem;\n  }\n\n  .section-flex {\n    display: block;\n  }\n\n  .block-square {\n    &:nth-last-child(2) {\n      margin-bottom: 2rem;\n    }\n  }\n}\n"
  },
  {
    "path": "_sass/_footer.scss",
    "content": "footer {\n  color: $secondary-color;\n  font-size: 1rem;\n  min-height: 3rem;\n  line-height: 3rem;\n  margin-top: 1rem;\n  margin-bottom: 1rem;\n}\n"
  },
  {
    "path": "_sass/_header.scss",
    "content": "header {\n  display: flex;\n  justify-content: space-between;\n  border-bottom: .1rem solid $secondary-color;\n  padding-top: 2.2rem;\n  padding-bottom: 2.2rem;\n}\n\n.name-wrapper {\n  padding-top: 1rem;\n  padding-bottom: 1rem;\n}\n\n.title {\n  font-size: 2.2rem;\n}\n\n.sub-title {\n  font-size: 1.2rem;\n  margin-top: .8rem;\n}\n\n.contact {\n  font-size: 1rem;\n  padding-top: 1rem;\n}\n\n.contact-item {\n  margin-top: .4rem;\n\n  &:nth-child(1) {\n    margin-top: 0;\n  }\n\n  &:a {\n    color: inherit;\n    text-decoration: none;\n  }\n}\n\n@media screen and (max-width: $breakpoint) {\n  header {\n    display: block;\n    padding-bottom: 1rem;\n  }\n\n  .name-wrapper {\n    text-align: center;\n    padding-bottom: 2rem;\n  }\n\n  .contact {\n    padding-top: 1rem;\n    border-top: .1rem solid $secondary-color;\n  }\n\n  .contact-item {\n    padding-top: .2rem;\n    padding-left: .4rem;\n  }\n}\n"
  },
  {
    "path": "_sass/_main.scss",
    "content": "html {\n  width: 100%;\n  font-size: 14px;\n}\n\nbody {\n  text-align: center;\n  width: 100%;\n  font-family: \"Noto Sans\", \"Segoe UI\", Roboto, Helvetica, \"Hiragino Sans GB\", \"Microsoft Yahei\", sans-serif;\n  -webkit-font-smoothing: antialiased;\n  font-size: 1rem;\n  margin: 0;\n  color: $main-color;\n  background-color: $background-color;\n}\n\na {\n  text-decoration: none;\n  color: inherit;\n\n  &:hover {\n    text-decoration: underline;\n  }\n}\n\n.container {\n  margin-left: auto;\n  margin-right: auto;\n  margin-bottom: 1rem;\n  max-width: $breakpoint;\n  text-align: left;\n}\n\n@media screen and (max-width: $breakpoint) {\n  html {\n    font-size: 12px;\n  }\n\n  .container {\n    padding-left: .4rem;\n    padding-right: .4rem;\n  }\n}\n\n@media print {\n  html {\n    font-size: 12px;\n  }\n\n  .print {\n    display: none;\n  }\n}\n"
  },
  {
    "path": "assets/css/resume.scss",
    "content": "---\n---\n\n/*\n * Theme of Crisp Minimal Resume\n * Copyright (c) David Zhang, 2019\n */\n\n$breakpoint: 48rem;\n\n$background-color: #fff;\n\n{% case site.color %}\n{% when 'red' %}\n$main-color:       #495057;\n$secondary-color:  #fa5252;\n{% when 'pink' %}\n$main-color:       #495057;\n$secondary-color:  #e64980;\n{% when 'grape' %}\n$main-color:       #495057;\n$secondary-color:  #e64980;\n{% when 'violet' %}\n$main-color:       #495057;\n$secondary-color:  #7950f2;\n{% when 'indigo' %}\n$main-color:       #495057;\n$secondary-color:  #4c6ef5;\n{% when 'blue' %}\n$main-color:       #495057;\n$secondary-color:  #228be6;\n{% when 'cyan' %}\n$main-color:       #495057;\n$secondary-color:  #15aabf;\n{% when 'teal' %}\n$main-color:       #495057;\n$secondary-color:  #12b886;\n{% when 'green' %}\n$main-color:       #495057;\n$secondary-color:  #40c057;\n{% when 'lime' %}\n$main-color:       #495057;\n$secondary-color:  #82c91e;\n{% when 'yellow' %}\n$main-color:       #495057;\n$secondary-color:  #fab005;\n{% when 'orange' %}\n$main-color:       #495057;\n$secondary-color:  #fd7e14;\n{% when 'gray' %}\n$main-color:       #495057;\n$secondary-color:  #adb5bd;\n{% when 'nord' %}\n$main-color:       #4C566A;\n$secondary-color:  #81A1C1;\n{% else %}\n$main-color:       #495057;\n$secondary-color:  #adb5bd;\n{% endcase %}\n\n@import \"main\";\n@import \"header\";\n@import \"body\";\n@import \"footer\";\n"
  },
  {
    "path": "jekyll-minimal-resume.gemspec",
    "content": "Gem::Specification.new do |spec|\n  spec.name                    = 'jekyll-theme-minimal-resume'\n  spec.version                 = '3.1.2'\n  spec.authors                 = ['David Zhang']\n\n  spec.summary                 = 'A minimalist resume template for Jekyll.'\n  spec.homepage                = 'https://github.com/crispgm/resume'\n  spec.license                 = 'MIT'\n\n  spec.metadata['plugin_type'] = 'theme'\n\n  spec.files                   = `git ls-files -z`.split(\"\\x0\").select do |f|\n    f.match(%r{^(assets|_(data|includes|layouts|sass)/|(LICENSE|README)((\\.(txt|md|markdown)|$)))}i)\n  end\n\n  spec.required_ruby_version = '>= 2.3'\n\n  spec.add_runtime_dependency 'jekyll', '~> 3.8'\n  spec.add_runtime_dependency 'webrick', '~> 1.7'\n\n  spec.add_development_dependency 'bundler', '>= 1.12.0', '< 3.0.0'\n  spec.add_development_dependency 'rake', '>= 12.3.3'\nend\n"
  },
  {
    "path": "port-hexo/README.md",
    "content": "# Crisp Minimal Résumé for Hexo\n\n[![npm version](https://badge.fury.io/js/hexo-theme-crisp-minimal-resume.svg)](https://badge.fury.io/js/hexo-theme-crisp-minimal-resume)\n\nOfficial Hexo port of Crisp Minimal Résumé.\n\n[Hexo Demo](https://crispgm.github.io/resume-hexo-example/)\n\nNotice:\n\n- **For Hexo 5 support, please read [this section](#Hexo-5-Compatibility).**\n- `color` is not supported in Hexo version.\n\n## Usage\n\n1. Install Hexo\n\n   ```shell\n   yarn global add hexo-cli\n   ```\n\n2. Init Hexo\n\n   ```shell\n   hexo new your-resume\n   ```\n\n3. Use Theme\n\n   ```shell\n   # Clone the repo in a different folder\n   # e.g. /path/to/resume\n   git clone https://github.com/crispgm/resume.git\n\n   # Copy theme files\n   cp -r /path/to/resume/port-hexo /path/to/your-resume/themes/hexo-crisp-minimal-theme\n\n   # Then, change theme in `_config.yml`\n   ```\n\n4. Config your résumé data\n\n   Set theme:\n\n   ```yaml\n   theme: hexo-crisp-minimal-resume\n   ```\n\n   The `baseurl` is required in `_config.yml` if you serve this page as part of your website. And your contact information, **EDUCATION**, **SKILLS**, **EXPERIENCE**, and **PROJECTS** data under `resume`. See example in [/port-hexo/\\_config.yml](/_config.yml).\n\n5. Run and Debug\n\n   ```shell\n   hexo server\n   ```\n\n### Hexo 5 Compatibility\n\nHexo 5 is not supported yet. See detail in [issue#9](https://github.com/crispgm/resume/issues/9). Fortunately, there is a workaround from @arthuroy to make it work.\n\nFor hexo 5.3.0, add the following dependency to `package.json`:\n\n```json\n\"dependencies\": {\n  \"hexo-renderer-swig\": \"^1.1.0\"\n}\n```\n\nand run `npm install`, then `npm run server`.\n\n## Donation\n\n- [Buy Me A Coffee](https://www.buymeacoffee.com/crispgm)\n\n## License\n\n[![license](https://img.shields.io/github/license/crispgm/resume.svg)](/LICENSE)\n"
  },
  {
    "path": "port-hexo/_config.yml",
    "content": "title: Résumé\nresume:\n  name: YOUR NAME\n  jobtitle: Your Job Title\n  contact:\n    - icon: fa-envelope\n      text: youremail@example.com\n    - icon: fa-phone-square\n      text: your-phone-num\n    - icon: fa-globe\n      text: your-website.com\n      link: https://crispgm.github.io/resume/resume.html\n    - icon: fa-github\n      text: your-github\n      link: https://github.com/crispgm/resume\n  education:\n    - university: Your First University\n      duration: Jul 2011 - Dec 2012\n      location: Consectetur adipiscing elit\n      major: Lorem ipsum dolor sit amet\n    - university: Your Second University\n      duration: Aug 2007 - Jun 2011\n      location: Ut enim ad minim veniam\n      major: Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat\n  skills:\n    - title: Skill Group 1\n      items: Lorem, Ipsum, Dolor, Sit, Amet\n    - title: Skill Group 2\n      items: Consectetur, Adipiscing, Elit\n    - title: Skill Group 3\n      items: Sed do, Eiusmod, Tempor, Incididunt\n  experience:\n    - title: Job Title 1\n      duration: Apr 2016 - Now\n      company: Your 1st, Inc.\n      description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\n    - title: Job Title 2\n      duration: Apr 2013 - Mar 2016\n      company: Your 2nd, Inc.\n      description: Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n    - title: Job Title 3\n      duration: Dec 2011 - Mar 2012\n      company: Your 3rd Co, Ltd.\n      description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n  projects:\n    - name: Project Name 1\n      description: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n      contribution: Contributor.\n    - name: Project Name 2\n      description: Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n      contribution: Creator and maintainer.\n  languages:\n    - name: English\n      proficiency: Work proficiency\n    - name: Mandarin Chinese\n      proficiency: Native\n"
  },
  {
    "path": "port-hexo/layout/_partial/foot.swig",
    "content": "<footer>\n  Made with <i class=\"fa fa-heart aria-hidden=\"true></i> by <a href=\"https://github.com/crispgm/resume\">David Zhang</a> <span class=\"print\">( <a href=\"javascript:window.print()\">PDF</a> )</span>\n</footer>\n"
  },
  {
    "path": "port-hexo/layout/_partial/head.swig",
    "content": "<head>\n  <title>{{ config.title }}</title>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <link href=\"https://fonts.googleapis.com/css?family=Noto+Sans\" rel=\"stylesheet\">\n  <link href=\"https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css\" rel=\"stylesheet\">\n  <link rel=\"stylesheet\" href=\"{{ config.root }}/resume.css\">\n</head>\n"
  },
  {
    "path": "port-hexo/layout/_partial/resume.swig",
    "content": "<div class=\"container\">\n  <header>\n    <div class=\"name-wrapper\">\n      <div id=\"fullname\" class=\"title\">\n        {{ config.resume.name }}\n      </div>\n      <div id=\"jobtitle\" class=\"sub-title\">\n        {{ config.resume.jobtitle }}\n      </div>\n    </div>\n    <div id=\"contact\" class=\"contact\">\n      {% for item in config.resume.contact %}\n      <div class=\"contact-item\">\n        {% if item.link %}\n        <a href=\"{{ item.link }}\">\n        {% endif %}\n        <i class=\"fa {{ item.icon }} aria-hidden=\"true></i> {{ item.text }}\n        {% if item.link %}\n        </a>\n        {% endif %}\n      </div>\n      {% endfor %}\n    </div>\n  </header>\n\n  <section id=\"education\">\n    <div class=\"section-title\">\n      Education\n    </div>\n    <div class=\"section-content\">\n      {% for edu in config.resume.education %}\n      <div class=\"block\">\n        <div class=\"block-title\">\n          {{ edu.university }}\n        </div>\n        <div class=\"block-subtitle\">\n          {{ edu.duration }} | {{ edu.location }}\n        </div>\n        <div class=\"block-content\">\n          {{ edu.major }}\n        </div>\n      </div>\n      {% endfor %}\n    </div>\n  </section>\n\n  <section id=\"skills\">\n    <div class=\"section-title\">\n      Skills\n    </div>\n    <div class=\"section-content\">\n      {% for skill in config.resume.skills %}\n      <div class=\"block\">\n        <div class=\"block-title\">\n          {{ skill.title }}\n        </div>\n        <div class=\"block-content\">\n          {{ skill.items }}\n        </div>\n      </div>\n      {% endfor %}\n    </div>\n  </section>\n\n  <section id=\"experience\">\n    <div class=\"section-title\">\n      Experience\n    </div>\n    <div class=\"section-content\">\n      {% for exp in config.resume.experience %}\n      <div class=\"block\">\n        <div class=\"block-title\">\n          {{ exp.title }}\n        </div>\n        <div class=\"block-subtitle\">\n          {{ exp.duration }} | {{ exp.company }}\n        </div>\n        <div class=\"block-content\">\n          {{ exp.description }}\n        </div>\n      </div>\n      {% endfor %}\n    </div>\n  </section>\n\n  <section id=\"projects\">\n    <div class=\"section-title\">\n      Projects\n    </div>\n    <div class=\"section-content\">\n      {% for project in config.resume.projects %}\n      <div class=\"block\">\n        <div class=\"block-title\">\n          {{ project.name }}\n        </div>\n        <div class=\"block-subtitle\">\n          {{ project.contribution }}\n        </div>\n        <div class=\"block-content\">\n          {{ project.description }}\n        </div>\n      </div>\n      {% endfor %}\n    </div>\n  </section>\n\n  <section id=\"languages\">\n    <div class=\"section-title\">\n      Languages\n    </div>\n    <div class=\"section-content section-flex\">\n      {% for language in config.resume.languages %}\n      <div class=\"block block-square\">\n        <div class=\"block-title\">\n          {{ language.name }}\n        </div>\n        <div class=\"block-content\">\n          {{ language.proficiency }}\n        </div>\n      </div>\n      {% endfor %}\n    </div>\n  </section>\n</div>\n"
  },
  {
    "path": "port-hexo/layout/index.swig",
    "content": "<!DOCTYPE html>\n<html>\n  {{ partial('./_partial/head.swig') }}\n  <body>\n  {{ partial('./_partial/resume.swig') }}\n  {{ partial('./_partial/foot.swig') }}\n  </body>\n</html>\n"
  },
  {
    "path": "port-hexo/package.json",
    "content": "{\n  \"name\": \"hexo-theme-crisp-minimal-resume\",\n  \"version\": \"1.0.1\",\n  \"description\": \"Hexo port of Jekyll Crisp Minimal Resume Theme\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/crispgm/resume.git\"\n  },\n  \"keywords\": [\n    \"hexo\",\n    \"theme\",\n    \"resume\"\n  ],\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\"\n  },\n  \"author\": \"David Zhang\",\n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "port-hexo/source/resume.css",
    "content": "/*\n * Theme of Crisp Minimal Resume\n * Copyright (c) David Zhang, 2019\n */\nhtml {\n  width: 100%;\n  font-size: 14px; }\n\nbody {\n  text-align: center;\n  width: 100%;\n  font-family: \"Noto Sans\", \"Segoe UI\", Roboto, Helvetica, \"Hiragino Sans GB\", \"Microsoft Yahei\", sans-serif;\n  -webkit-font-smoothing: antialiased;\n  font-size: 1rem;\n  margin: 0;\n  color: #495057;\n  background-color: #fff; }\n\na {\n  text-decoration: none;\n  color: inherit; }\n  a:hover {\n    text-decoration: underline; }\n\n.container {\n  margin-left: auto;\n  margin-right: auto;\n  margin-bottom: 1rem;\n  max-width: 48rem;\n  text-align: left; }\n\n@media screen and (max-width: 48rem) {\n  html {\n    font-size: 12px; }\n\n  .container {\n    padding-left: .4rem;\n    padding-right: .4rem; } }\n@media print {\n  html {\n    font-size: 12px; }\n\n  .print {\n    display: none; } }\nheader {\n  display: flex;\n  justify-content: space-between;\n  border-bottom: 0.1rem solid #adb5bd;\n  padding-top: 2.2rem;\n  padding-bottom: 2.2rem; }\n\n.name-wrapper {\n  padding-top: 1rem;\n  padding-bottom: 1rem; }\n\n.title {\n  font-size: 2.2rem; }\n\n.sub-title {\n  font-size: 1.2rem;\n  margin-top: .8rem; }\n\n.contact {\n  font-size: 1rem;\n  padding-top: 1rem; }\n\n.contact-item {\n  margin-top: .4rem; }\n  .contact-item:nth-child(1) {\n    margin-top: 0; }\n  .contact-item:a {\n    color: inherit;\n    text-decoration: none; }\n\n@media screen and (max-width: 48rem) {\n  header {\n    display: block;\n    padding-bottom: 1rem; }\n\n  .name-wrapper {\n    text-align: center;\n    padding-bottom: 2rem; }\n\n  .contact {\n    padding-top: 1rem;\n    border-top: 0.1rem solid #adb5bd; }\n\n  .contact-item {\n    padding-top: .2rem;\n    padding-left: .4rem; } }\nsection {\n  display: flex;\n  padding-top: 2.4rem;\n  padding-bottom: 2.4rem;\n  padding-left: .2rem;\n  border-bottom: 0.1rem solid #adb5bd;\n  hyphens: auto; }\n\n.section-title {\n  font-size: 1.6rem;\n  text-align: left;\n  min-width: 10rem; }\n\n.section-flex {\n  display: flex;\n  flex-wrap: wrap; }\n\n.block {\n  margin-bottom: 2rem; }\n  .block:last-child {\n    margin-bottom: 0; }\n\n.block-square {\n  width: 18rem; }\n  .block-square:nth-last-child(2) {\n    margin-bottom: 0; }\n\n.block-title {\n  font-size: 1.2rem;\n  margin-bottom: .4rem;\n  font-weight: bold; }\n\n.block-subtitle {\n  font-size: 1rem;\n  margin-bottom: 1rem;\n  color: #adb5bd; }\n\n.block-content {\n  font-size: 1rem;\n  line-height: 1.5; }\n\n@media screen and (max-width: 48rem) {\n  section {\n    display: block;\n    padding-top: 2rem;\n    padding-bottom: 2rem; }\n\n  .section-title {\n    text-align: center;\n    margin-bottom: 2rem; }\n\n  .section-flex {\n    display: block; }\n\n  .block-square:nth-last-child(2) {\n    margin-bottom: 2rem; } }\nfooter {\n  color: #adb5bd;\n  font-size: 1rem;\n  min-height: 3rem;\n  line-height: 3rem;\n  margin-top: 1rem;\n  margin-bottom: 1rem; }\n"
  },
  {
    "path": "resume.html",
    "content": "---\nlayout: resume\npermalink: /resume.html\n---\n"
  },
  {
    "path": "resume_zh-CN.html",
    "content": "---\nlayout: resume_zh_cn\npermalink: /resume_zh-CN.html\n---\n"
  },
  {
    "path": "script/bootstrap",
    "content": "#!/usr/bin/env bash\n\nset -e\n\ngem install bundler\nbundle install\n"
  },
  {
    "path": "script/cibuild",
    "content": "#!/usr/bin/env bash\n\nset -e\n\necho \"Building Jekyll site\"\n\n# lint\nbundle exec scss-lint --config=.scss-lint.yml\n\nbundle exec jekyll build\n\n# build English version\nif test -e \"./_site/resume.html\";then\n  echo \"It smokes!\"\nelse\n  echo \"Build EN version failed\"\n  exit 1\nfi\n\n# build Chinese version\nif test -e \"./_site/resume_zh-CN.html\";then\n  echo \"It smokes!\"\nelse\n  echo \"Build CN version failed\"\n  exit 1\nfi\n\n# build with Gem\nrm -rf ./_site\nbundle exec jekyll build --config ./_config_gem.yml\nif test -e \"./_site/resume.html\";then\n  echo \"It smokes!\"\nelse\n  echo \"Build EN version with Gem failed\"\n  exit 1\nfi\n"
  }
]