jekyll-theme-minimal-resume 3.1.1 → 3.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/README.md +70 -70
  4. data/_sass/_body.scss +1 -0
  5. metadata +27 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 24d1f01747e3e12f81e038acbd5fcd1bc0005018e6a20c01e07f68c83a5933f7
4
- data.tar.gz: 2459b336f0c30e97aa76c1f9836aa323088ed5e212abcb8dd06cfaee9dbf0223
3
+ metadata.gz: 36cac72ba1d0cff4fc1924a02330b7f2f597103b6cf001ccbdefdf0a3618b27f
4
+ data.tar.gz: 7b2d0d76c57f8d119a5020414b9d180d3d3e5ea1b6cbb92a98a181fa07dae6ae
5
5
  SHA512:
6
- metadata.gz: 3dd4fe5601bb97b6c6272b1570252352b63044cb59e4af92a8e5c7d28e0d9cedd76f751f2571d55814c8b335ab972c8f5805dcfee094a05bf737955a0ba69334
7
- data.tar.gz: e86c7204dadcc77871ee87f8e98ac965bc1a652b8deef0e852ef7476ccd0aca451c6550a04e242a88e5c367c250eea2e9917d747a5850fc86e1f6aa8e4974611
6
+ metadata.gz: 102eaeff09c8ae2a0c56850d1f8104a1340b631ebcffab5a13b8581a5c21dbace8a9d74d36e2bc4da95d6d6e824df04150cad278d0e83f777f3af3e8775a6f4d
7
+ data.tar.gz: 45271893b5ef68ae0830d544548560014d7a5f4505c75955cfce500b608c002a44c402f62f971994e3c36685040e1715fc4e1673348175391d70c4ef2f02b443
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2019 David Zhang
3
+ Copyright (c) 2020 David Zhang
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,20 +1,25 @@
1
1
  # Crisp Minimal Résumé
2
2
 
3
- ![travis](https://travis-ci.org/crispgm/resume.svg)
4
- ![GitHub CI](https://github.com/crispgm/resume/workflows/build/badge.svg)
5
- [![Gem Version](https://badge.fury.io/rb/jekyll-theme-minimal-resume.svg)](https://badge.fury.io/rb/jekyll-theme-minimal-resume)
6
- ![powered-by-jekyll](https://img.shields.io/badge/powered%20by-jekyll-blue.svg)
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
- * Simple, elegant, and minimal design
26
- * PC and mobile friendly, but it looks better on PC
27
- * PDF supports and print friendly
28
- * Flexible and extensible
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
- ```shell
37
- git clone https://github.com/crispgm/resume.git
38
- ```
41
+ ```shell
42
+ git clone https://github.com/crispgm/resume.git
43
+ ```
39
44
 
40
45
  2. Install Jekyll
41
46
 
42
- ```shell
43
- gem install jekyll
44
- ```
47
+ ```shell
48
+ gem install jekyll
49
+ ```
45
50
 
46
51
  3. Config your résumé data
47
52
 
48
- 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`.
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
- ```shell
53
- jekyll serve
54
- ```
57
+ ```shell
58
+ jekyll serve
59
+ ```
55
60
 
56
61
  5. Build
57
62
 
58
- ```shell
59
- jekyll build
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
- source "https://rubygems.org"
71
+ ```shell
72
+ source "https://rubygems.org"
68
73
 
69
- gem "jekyll-theme-minimal-resume"
70
- ```
74
+ gem "jekyll-theme-minimal-resume"
75
+ ```
71
76
 
72
- And then,
77
+ And then,
73
78
 
74
- ```shell
75
- bundle install
76
- ```
79
+ ```shell
80
+ bundle install
81
+ ```
77
82
 
78
83
  2. Init `_config.yml`
79
84
 
80
- ```yaml
81
- title: Résumé Title
82
- baseurl: "/resume/"
83
- theme: "jekyll-theme-minimal-resume"
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
- ```yaml
89
- ---
90
- layout: resume
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
- ```yaml
147
- languages:
148
- - name: English
149
- proficiency: Professional working proficiency
150
- - name: Mandarin Chinese
151
- proficiency: Native or bilingual proficiency
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
- ```html
157
- <section id="languages">
158
- <div class="section-title">
159
- Language
160
- </div>
161
- <div class="section-content">
162
- {% for lang in site.data.resume.languages %}
163
- <div class="block">
164
- <div class="block-title">
165
- {{ lang.name }}
166
- </div>
167
- <div class="block-content">
168
- {{ lang.proficiency }}
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
- * [David Zhang](https://crispgm.com/resume/)
180
+ - [David Zhang](https://crispgm.com/resume/)
181
181
 
182
182
  ## Donation
183
183
 
184
- * [Buy Me A Coffee](https://www.buymeacoffee.com/crispgm)
185
- * [PayPal](https://www.paypal.me/crispgm)
184
+ - [Buy Me A Coffee](https://www.buymeacoffee.com/crispgm)
185
+ - [PayPal](https://www.paypal.me/crispgm)
186
186
 
187
187
  ## License
188
188
 
@@ -13,6 +13,7 @@ section {
13
13
  min-width: 10rem;
14
14
  }
15
15
 
16
+ // scss-lint:disable EmptyRule
16
17
  .section-content {
17
18
  }
18
19
 
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.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: 2019-09-24 00:00:00.000000000 Z
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: '10.0'
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: '10.0'
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.0.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: []