English resumehtml
Aoba is a resume creator which you can create a lovely resume only with a configuration file, such as a .json file or a .yaml file.node
The project is build by Poi, then we need not git clone && run build to get a resume, just use it. The design is inspired by the cute resume by DIYgod. Thanks for the awesome work they done.python
The name is inspired by lovely Aoba Suzukaze in 《new game!》, maybe it can be a gift for young people who enter the workforce, with my best wishes.git
index.html
which will be be your resume:<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<title>My resume</title>
<!-- Stylesheet -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aoba-resume/dist/aoba.css">
</head>
<body>
<div id="app"></div>
<!-- Script -->
<script src="https://cdn.jsdelivr.net/npm/aoba-resume/dist/aoba.js"></script>
<!-- Start app -->
<script> const resume = new aoba() resume.start('#app') </script>
</body>
</html>
複製代碼
Then write a .json or .yaml file at the same directory where index.html
is located. The file has six parts, basicInfo, contact, application, workExperience, personalProject and skills. See content.json or content.yaml for details.github
Then serve this directory as a static website:golang
npm i -g serve
&& serve ./docs
cd ./docs
&& python -m SimpleHTTPServer
cd ./docs
&& caddy
Finally save the file as pdf, open the file in a browser, choose print and save.web
Simply put all your files in docs
folder on master
branch, or root directory on the gh-pages
branch.npm
Don't forget to add .nojekyll
file to tell GitHub to treat it as a normal static website.json
const resume = new aoba(options)
複製代碼
Type: string
Default: zh
support zh & en
Type: string
Default: ./
Type: string
Default: content.json
The configuration file.
E.g. content.json, content.yaml
Type: string
HTMLElement
The place to mount app.
MIT © luyilin