jekyll-theme-minimal-resume 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +70 -70
- data/_sass/_body.scss +1 -0
- metadata +27 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36cac72ba1d0cff4fc1924a02330b7f2f597103b6cf001ccbdefdf0a3618b27f
|
|
4
|
+
data.tar.gz: 7b2d0d76c57f8d119a5020414b9d180d3d3e5ea1b6cbb92a98a181fa07dae6ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 102eaeff09c8ae2a0c56850d1f8104a1340b631ebcffab5a13b8581a5c21dbace8a9d74d36e2bc4da95d6d6e824df04150cad278d0e83f777f3af3e8775a6f4d
|
|
7
|
+
data.tar.gz: 45271893b5ef68ae0830d544548560014d7a5f4505c75955cfce500b608c002a44c402f62f971994e3c36685040e1715fc4e1673348175391d70c4ef2f02b443
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
# Crisp Minimal Résumé
|
|
2
2
|
|
|
3
|
-

|
|
4
|
-

|
|
5
|
-
[](https://badge.fury.io/rb/jekyll-theme-minimal-resume)
|
|
6
|
-

|
|
7
|
-
|
|
8
3
|
<p align="center">
|
|
9
4
|
<img src="screenshots/resume-desktop.png" width="578" />
|
|
10
5
|
<img src="screenshots/resume-mobile.png" width="220" />
|
|
11
6
|
</p>
|
|
12
7
|
|
|
8
|
+
<p align="center">
|
|
9
|
+
<img src="https://github.com/crispgm/resume/workflows/build/badge.svg" alt="GitHub CI" />
|
|
10
|
+
<a href="https://badge.fury.io/rb/jekyll-theme-minimal-resume">
|
|
11
|
+
<img src="https://badge.fury.io/rb/jekyll-theme-minimal-resume.svg" alt="Gem Version" />
|
|
12
|
+
</a>
|
|
13
|
+
<a href="https://badge.fury.io/js/hexo-theme-crisp-minimal-resume">
|
|
14
|
+
<img src="https://badge.fury.io/js/hexo-theme-crisp-minimal-resume.svg" alt="npm version" />
|
|
15
|
+
</a>
|
|
16
|
+
</p>
|
|
17
|
+
|
|
13
18
|
## Introduction
|
|
14
19
|
|
|
15
20
|
[English](/README.md) [简体中文](/README_zh-CN.md)
|
|
16
21
|
|
|
17
|
-
This is a responsive minimal résumé template made by Crisp, powered by [Jekyll](http://jekyllrb.com/).
|
|
22
|
+
This 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.
|
|
18
23
|
|
|
19
24
|
You 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.
|
|
20
25
|
|
|
@@ -22,10 +27,10 @@ You may config all the data in `yaml` and make it your own résumé. Then, you m
|
|
|
22
27
|
|
|
23
28
|
## Features
|
|
24
29
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
30
|
+
- Simple, elegant, and minimal design
|
|
31
|
+
- PC and mobile friendly, but it looks better on PC
|
|
32
|
+
- PDF supports and print friendly
|
|
33
|
+
- Flexible and extensible
|
|
29
34
|
|
|
30
35
|
## Usage
|
|
31
36
|
|
|
@@ -33,63 +38,64 @@ You may config all the data in `yaml` and make it your own résumé. Then, you m
|
|
|
33
38
|
|
|
34
39
|
1. Clone the repo
|
|
35
40
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
41
|
+
```shell
|
|
42
|
+
git clone https://github.com/crispgm/resume.git
|
|
43
|
+
```
|
|
39
44
|
|
|
40
45
|
2. Install Jekyll
|
|
41
46
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
47
|
+
```shell
|
|
48
|
+
gem install jekyll
|
|
49
|
+
```
|
|
45
50
|
|
|
46
51
|
3. Config your résumé data
|
|
47
52
|
|
|
48
|
-
|
|
53
|
+
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`.
|
|
49
54
|
|
|
50
55
|
4. Run and Debug
|
|
51
56
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
57
|
+
```shell
|
|
58
|
+
jekyll serve
|
|
59
|
+
```
|
|
55
60
|
|
|
56
61
|
5. Build
|
|
57
62
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
63
|
+
```shell
|
|
64
|
+
jekyll build
|
|
65
|
+
```
|
|
61
66
|
|
|
62
67
|
### Gem-based Theme
|
|
63
68
|
|
|
64
69
|
1. Create a `Gemfile`
|
|
65
70
|
|
|
66
|
-
|
|
67
|
-
|
|
71
|
+
```shell
|
|
72
|
+
source "https://rubygems.org"
|
|
68
73
|
|
|
69
|
-
|
|
70
|
-
|
|
74
|
+
gem "jekyll-theme-minimal-resume"
|
|
75
|
+
```
|
|
71
76
|
|
|
72
|
-
|
|
77
|
+
And then,
|
|
73
78
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
79
|
+
```shell
|
|
80
|
+
bundle install
|
|
81
|
+
```
|
|
77
82
|
|
|
78
83
|
2. Init `_config.yml`
|
|
79
84
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
+
```yaml
|
|
86
|
+
title: Résumé Title
|
|
87
|
+
baseurl: "/resume/"
|
|
88
|
+
theme: "jekyll-theme-minimal-resume"
|
|
89
|
+
```
|
|
85
90
|
|
|
86
91
|
3. Create a `index.html`
|
|
87
92
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
+
```yaml
|
|
94
|
+
---
|
|
95
|
+
layout: resume
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
```
|
|
93
99
|
|
|
94
100
|
4. Create `_data/resume.yml` and fill in your resume data. [Example data is available here](/_data/resume.ytml).
|
|
95
101
|
|
|
@@ -143,46 +149,40 @@ Colors powered by [Nord](https://www.nordtheme.com/):
|
|
|
143
149
|
|
|
144
150
|
1. Add new section in `_data/resume.yml`
|
|
145
151
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
152
|
+
```yaml
|
|
153
|
+
languages:
|
|
154
|
+
- name: English
|
|
155
|
+
proficiency: Professional working proficiency
|
|
156
|
+
- name: Mandarin Chinese
|
|
157
|
+
proficiency: Native or bilingual proficiency
|
|
158
|
+
```
|
|
153
159
|
|
|
154
160
|
2. Add section to `_layouts/resume.html`:
|
|
155
161
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
</div>
|
|
170
|
-
</div>
|
|
171
|
-
{% endfor %}
|
|
172
|
-
</div>
|
|
173
|
-
</section>
|
|
174
|
-
```
|
|
162
|
+
```html
|
|
163
|
+
<section id="languages">
|
|
164
|
+
<div class="section-title">Language</div>
|
|
165
|
+
<div class="section-content">
|
|
166
|
+
{% for lang in site.data.resume.languages %}
|
|
167
|
+
<div class="block">
|
|
168
|
+
<div class="block-title">{{ lang.name }}</div>
|
|
169
|
+
<div class="block-content">{{ lang.proficiency }}</div>
|
|
170
|
+
</div>
|
|
171
|
+
{% endfor %}
|
|
172
|
+
</div>
|
|
173
|
+
</section>
|
|
174
|
+
```
|
|
175
175
|
|
|
176
176
|
## Showcases
|
|
177
177
|
|
|
178
178
|
Feel free to add yours here.
|
|
179
179
|
|
|
180
|
-
|
|
180
|
+
- [David Zhang](https://crispgm.com/resume/)
|
|
181
181
|
|
|
182
182
|
## Donation
|
|
183
183
|
|
|
184
|
-
|
|
185
|
-
|
|
184
|
+
- [Buy Me A Coffee](https://www.buymeacoffee.com/crispgm)
|
|
185
|
+
- [PayPal](https://www.paypal.me/crispgm)
|
|
186
186
|
|
|
187
187
|
## License
|
|
188
188
|
|
data/_sass/_body.scss
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-minimal-resume
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Zhang
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: webrick
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.7'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.7'
|
|
13
27
|
- !ruby/object:Gem::Dependency
|
|
14
28
|
name: jekyll
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -48,18 +62,18 @@ dependencies:
|
|
|
48
62
|
name: rake
|
|
49
63
|
requirement: !ruby/object:Gem::Requirement
|
|
50
64
|
requirements:
|
|
51
|
-
- - "
|
|
65
|
+
- - ">="
|
|
52
66
|
- !ruby/object:Gem::Version
|
|
53
|
-
version:
|
|
67
|
+
version: 12.3.3
|
|
54
68
|
type: :development
|
|
55
69
|
prerelease: false
|
|
56
70
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
71
|
requirements:
|
|
58
|
-
- - "
|
|
72
|
+
- - ">="
|
|
59
73
|
- !ruby/object:Gem::Version
|
|
60
|
-
version:
|
|
61
|
-
description:
|
|
62
|
-
email:
|
|
74
|
+
version: 12.3.3
|
|
75
|
+
description:
|
|
76
|
+
email:
|
|
63
77
|
executables: []
|
|
64
78
|
extensions: []
|
|
65
79
|
extra_rdoc_files: []
|
|
@@ -83,13 +97,13 @@ licenses:
|
|
|
83
97
|
- MIT
|
|
84
98
|
metadata:
|
|
85
99
|
plugin_type: theme
|
|
86
|
-
post_install_message:
|
|
100
|
+
post_install_message:
|
|
87
101
|
rdoc_options: []
|
|
88
102
|
require_paths:
|
|
89
103
|
- lib
|
|
90
104
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
105
|
requirements:
|
|
92
|
-
- - "
|
|
106
|
+
- - ">="
|
|
93
107
|
- !ruby/object:Gem::Version
|
|
94
108
|
version: '2.3'
|
|
95
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
@@ -98,8 +112,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
98
112
|
- !ruby/object:Gem::Version
|
|
99
113
|
version: '0'
|
|
100
114
|
requirements: []
|
|
101
|
-
rubygems_version: 3.
|
|
102
|
-
signing_key:
|
|
115
|
+
rubygems_version: 3.2.3
|
|
116
|
+
signing_key:
|
|
103
117
|
specification_version: 4
|
|
104
118
|
summary: A minimalist resume template for Jekyll.
|
|
105
119
|
test_files: []
|