Official Hexo port of Crisp Minimal Résumé.
Notice:
- For Hexo 5 support, please read this section.
color
is not supported in Hexo version.
-
Install Hexo
yarn global add hexo-cli
-
Init Hexo
hexo new your-resume
-
Use Theme
# Clone the repo in a different folder # e.g. /path/to/resume git clone https://github.com/crispgm/resume.git # Copy theme files cp -r /path/to/resume/port-hexo /path/to/your-resume/themes/hexo-crisp-minimal-theme # Then, change theme in `_config.yml`
-
Config your résumé data
Set theme:
theme: hexo-crisp-minimal-resume
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 underresume
. See example in /port-hexo/_config.yml. -
Run and Debug
hexo server
Hexo 5 is not supported yet. See detail in issue#9. Fortunately, there is a workaround from @arthuroy to make it work.
For hexo 5.3.0, add the following dependency to package.json
:
"dependencies": {
"hexo-renderer-swig": "^1.1.0"
}
and run npm install
, then npm run server
.