├── .bowerrc ├── .gitignore ├── README.md ├── app ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff ├── images │ ├── Chong_Wu.png │ └── wechat.png ├── index.html ├── pdf │ └── CV.pdf ├── scripts │ └── main.js └── styles │ ├── _common.scss │ ├── _eduction.scss │ ├── _experiences.scss │ ├── _font.scss │ ├── _info.scss │ ├── _reset.scss │ ├── _skills.scss │ ├── _variables.scss │ └── main.scss ├── bower.json ├── docs ├── fonts │ ├── icomoon.eot │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff ├── images │ ├── Chong_Wu.png │ └── wechat.png ├── index.html ├── pdf │ └── CV.pdf ├── scripts │ ├── main.js │ └── vendor.js └── styles │ ├── main.css │ └── vendor.css ├── gulpfile.js └── package.json /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/libs" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __MACOSX/ 2 | .DS_Store 3 | .idea/ 4 | app/libs 5 | app/styles/main.css 6 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 安装 2 | 使用以下命令安装相关的npm和bower包: 3 | ``` 4 | npm install 5 | bower install 6 | ``` 7 | 8 | ## 主要gulp任务 9 | - gulp serve/gulp: 开发时环境(在本地3000启动一个静态服务器, 当相关文件改变时实时更新页面) 10 | - gulp build: 构建线上相关文件到docs目录, 供github pages使用 11 | 12 | PS: 具体任务请参考gulpfile.js文件 13 | 14 | ## 开发及发布流程 15 | local develop -> local test -> gulp build -> git commit and push 16 | 17 | ## 线上demo 18 | [DEMO](https://simonwoo.github.io/cv/) 19 | 20 | ## 设计思路 21 | [设计思路](https://segmentfault.com/a/1190000007399804) 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/fonts/icomoon.eot -------------------------------------------------------------------------------- /app/fonts/icomoon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/fonts/icomoon.ttf -------------------------------------------------------------------------------- /app/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/fonts/icomoon.woff -------------------------------------------------------------------------------- /app/images/Chong_Wu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/images/Chong_Wu.png -------------------------------------------------------------------------------- /app/images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonwoo/cv/b03d5e1b3636d4bd4961ee01543bdc8a3cf49da1/app/images/wechat.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |