jekyll-theme-minimal-resume 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 653f0c50088e8487b8740be7ec35920ac4a8bf357701ee2a2e2c64c6a54705d3
4
+ data.tar.gz: e2aa726ae31eebbb47401f37d0725bf2b03dd6a9ae3ece55610354dac3c086cf
5
+ SHA512:
6
+ metadata.gz: 749f14a0a6fcb74f7264ec709b3066f67b5a4dd67cc972bff749197e22a6402c14087a19cda5d711ecbfa7833089d8395d5fcbfaf6403fd2e5cb211bba0f83f6
7
+ data.tar.gz: 8720c87c1fbc85676e3c75acb9c4042db421475130fd535d72d51988e378857f00a3e30927b35edb469a09197ef2b8f0ec7ffe0a45f099dcf0299ebc7f9e6e31
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 David Zhang
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,153 @@
1
+ # Crisp Minimal Résumé
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/jekyll-theme-minimal-resume.svg)](https://badge.fury.io/rb/jekyll-theme-minimal-resume.svg)
4
+ ![travis](https://travis-ci.org/crispgm/resume.svg)
5
+ ![powered-by-jekyll](https://img.shields.io/badge/powered%20by-jekyll-blue.svg)
6
+
7
+ <p align="center">
8
+ <img src="screenshots/resume-desktop.png" width="578" />
9
+ <img src="screenshots/resume-mobile.png" width="220" />
10
+ </p>
11
+
12
+ ## Introduction
13
+
14
+ [English](/README.md) [简体中文](/README_zh-CN.md)
15
+
16
+ This is a responsive minimal résumé template made by Crisp, powered by [Jekyll](http://jekyllrb.com/).
17
+
18
+ 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.
19
+
20
+ [DEMO](https://crispgm.github.io/resume/resume.html)
21
+
22
+ ## Features
23
+
24
+ * Simple, elegant, and minimal design
25
+ * PC and mobile friendly, but it looks better on PC
26
+ * PDF supports and print friendly
27
+ * Flexible and extensible
28
+
29
+ ## Usage
30
+
31
+ 1. Clone the repo
32
+
33
+ ```shell
34
+ git clone https://github.com/crispgm/resume.git
35
+ ```
36
+
37
+ 2. Install Jekyll
38
+
39
+ ```shell
40
+ gem install jekyll
41
+ ```
42
+
43
+ 3. Config your résumé data
44
+
45
+ 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`.
46
+
47
+ 4. Run and Debug
48
+
49
+ ```shell
50
+ jekyll serve
51
+ ```
52
+
53
+ 5. Build
54
+
55
+ ```shell
56
+ jekyll build
57
+ ```
58
+
59
+ ## Gem-based Theme
60
+
61
+ 1. Add to `Gemfile`
62
+
63
+ ```shell
64
+ gem "jekyll-theme-minimal-resume"
65
+ ```
66
+
67
+ 2. Install or Update Bundle
68
+
69
+ ```shell
70
+ bundle install
71
+ ```
72
+
73
+ 3. Create `resume.html` and add the following
74
+
75
+ ```shell
76
+ ---
77
+ layout: resume
78
+ permalink: /resume.html
79
+ ---
80
+ ```
81
+
82
+ 4. Run and Debug
83
+
84
+ ```shell
85
+ jekyll serve
86
+ ```
87
+
88
+ 5. Build
89
+
90
+ ```shell
91
+ jekyll build
92
+ ```
93
+
94
+ ## Data Format
95
+
96
+ ### Contact
97
+
98
+ ```yaml
99
+ contact:
100
+ - icon: fa-envelope
101
+ text: youremail@example.com
102
+ - icon: fa-phone-square
103
+ text: your-phone-num
104
+ - icon: fa-globe
105
+ text: your-website.com
106
+ link: https://crispgm.github.io/resume/resume.html
107
+ ```
108
+
109
+ FontAwesome iconfont is embedded, so use the `fa-` class name as icon. `link` is optional, present if you want a link for your web version.
110
+
111
+ ## Extending Sections
112
+
113
+ 1. Add new section in `_data/resume.yml`
114
+
115
+ ```yaml
116
+ languages:
117
+ - name: English
118
+ proficiency: Professional working proficiency
119
+ - name: Mandarin Chinese
120
+ proficiency: Native or bilingual proficiency
121
+ ```
122
+
123
+ 2. Add section to `resume.html`:
124
+
125
+ ```html
126
+ <section id="languages">
127
+ <div class="section-title">
128
+ Language
129
+ </div>
130
+ <div class="section-content">
131
+ {% for lang in site.data.resume.languages %}
132
+ <div class="block">
133
+ <div class="block-title">
134
+ {{ lang.name }}
135
+ </div>
136
+ <div class="block-content">
137
+ {{ lang.proficiency }}
138
+ </div>
139
+ </div>
140
+ {% endfor %}
141
+ </div>
142
+ </section>
143
+ ```
144
+
145
+ ## Showcases
146
+
147
+ Feel free to add yours here.
148
+
149
+ * [David Zhang](https://crispgm.com/resume/)
150
+
151
+ ## License
152
+
153
+ [![license](https://img.shields.io/github/license/crispgm/resume.svg)](/LICENSE)
data/_data/resume.yml ADDED
@@ -0,0 +1,55 @@
1
+ title: Résumé
2
+ name: YOUR NAME
3
+ jobtitle: Your Job Title
4
+ contact:
5
+ - icon: fa-envelope
6
+ text: youremail@example.com
7
+ - icon: fa-phone-square
8
+ text: your-phone-num
9
+ - icon: fa-globe
10
+ text: your-website.com
11
+ link: https://crispgm.github.io/resume/resume.html
12
+ - icon: fa-github
13
+ text: your-github
14
+ link: https://github.com/crispgm/resume
15
+ education:
16
+ - university: Your First University
17
+ duration: Jul 2011 - Dec 2012
18
+ location: Consectetur adipiscing elit
19
+ major: Lorem ipsum dolor sit amet
20
+ - university: Your Second University
21
+ duration: Aug 2007 - Jun 2011
22
+ location: Ut enim ad minim veniam
23
+ major: Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat
24
+ skills:
25
+ - title: Skill Group 1
26
+ items: Lorem, Ipsum, Dolor, Sit, Amet
27
+ - title: Skill Group 2
28
+ items: Consectetur, Adipiscing, Elit
29
+ - title: Skill Group 3
30
+ items: Sed do, Eiusmod, Tempor, Incididunt
31
+ experience:
32
+ - title: Job Title 1
33
+ duration: Apr 2016 - Now
34
+ company: Your 1st, Inc.
35
+ description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
36
+ - title: Job Title 2
37
+ duration: Apr 2013 - Mar 2016
38
+ company: Your 2nd, Inc.
39
+ description: Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
40
+ - title: Job Title 3
41
+ duration: Dec 2011 - Mar 2012
42
+ company: Your 3rd Co, Ltd.
43
+ description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
44
+ projects:
45
+ - name: Project Name 1
46
+ description: Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
47
+ contribution: Contributor.
48
+ - name: Project Name 2
49
+ description: Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
50
+ contribution: Creator and maintainer.
51
+ languages:
52
+ - name: English
53
+ proficiency: Work proficiency
54
+ - name: Mandarin Chinese
55
+ proficiency: Native
@@ -0,0 +1,55 @@
1
+ title: "简历"
2
+ name: "王小二"
3
+ jobtitle: "高级软件研发工程师"
4
+ contact:
5
+ - icon: fa-envelope
6
+ text: wangxiao@er.com
7
+ - icon: fa-phone-square
8
+ text: (+86) 13800138000
9
+ - icon: fa-globe
10
+ text: wangxiaoer.com
11
+ link: https://crispgm.github.io/resume/resume_zh-CN.html
12
+ - icon: fa-github
13
+ text: wangxiaoer
14
+ link: https://github.com/crispgm/resume
15
+ education:
16
+ - university: "攻城科技大学"
17
+ duration: "2011/07 - 2012/12"
18
+ location: "北京"
19
+ major: "工学硕士,计算机科学与技术"
20
+ - university: "攻城大学"
21
+ duration: "2007/08 - 2011/06"
22
+ location: "南京"
23
+ major: "工学学士,计算机科学与技术"
24
+ skills:
25
+ - title: "程序设计"
26
+ items: "C/C++, Java, Python, Ruby, PHP, HTML/CSS, JavaScript, Vue"
27
+ - title: "计算机系统"
28
+ items: "Linux/Unix, 设计模式, 敏捷开发, 面向对象, 数据库设计, 多线程编程"
29
+ - title: "其它"
30
+ items: "Sublime Text, git, shell"
31
+ experience:
32
+ - title: "高级研发工程师"
33
+ duration: "2016/06 - 至今"
34
+ company: "T 公司"
35
+ description: "我在此项目负责了哪些工作,分别在哪些地方做得出色/和别人不一样/成长快,这个项目中,我最困难的问题是什么,我采取了什么措施,最后结果如何。这个项目中,我最自豪的技术细节是什么,为什么,实施前和实施后的数据对比如何,同事和领导对此的反应如何。"
36
+ - title: "研发工程师"
37
+ duration: "2013/01 - 2016/05"
38
+ company: "A 公司"
39
+ description: "我在此项目负责了哪些工作,分别在哪些地方做得出色/和别人不一样/成长快,这个项目中,我最困难的问题是什么,我采取了什么措施,最后结果如何。这个项目中,我最自豪的技术细节是什么,为什么,实施前和实施后的数据对比如何,同事和领导对此的反应如何。"
40
+ - title: "研发工程师(实习)"
41
+ duration: "2011/02 - 2012/12"
42
+ company: "B 公司"
43
+ description: "我在此项目负责了哪些工作,分别在哪些地方做得出色/和别人不一样/成长快,这个项目中,我最困难的问题是什么,我采取了什么措施,最后结果如何。这个项目中,我最自豪的技术细节是什么,为什么,实施前和实施后的数据对比如何,同事和领导对此的反应如何。"
44
+ projects:
45
+ - name: "Crisp Resume"
46
+ description: "一个基于 Jekyll 的极简风格响应式简历模板"
47
+ contribution: "贡献者"
48
+ - name: "你的项目"
49
+ description: "一个非常强大的开源项目,使用了若干强力技术,大大提升了生产力"
50
+ contribution: "创建者和维护者"
51
+ languages:
52
+ - name: "英语"
53
+ proficiency: "工作熟练"
54
+ - name: "中文"
55
+ proficiency: "母语"
@@ -0,0 +1,3 @@
1
+ <footer>
2
+ Made with <i class="fa fa-heart aria-hidden="true></i> by <a href="https://github.com/crispgm/resume">David Zhang</a> <span class="print">( <a href="javascript:window.print()">PDF</a> )</span>
3
+ </footer>
@@ -0,0 +1,8 @@
1
+ <head>
2
+ <title>{{ site.data.resume.title }}</title>
3
+ <meta charset="UTF-8">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ <link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">
6
+ <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
7
+ <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/resume.css">
8
+ </head>
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: null
3
+ ---
4
+ <!DOCTYPE html>
5
+ <html>
6
+ {% include head.html %}
7
+ <body>
8
+ {{ content }}
9
+ {% include foot.html %}
10
+ </body>
11
+ </html>
@@ -0,0 +1,128 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="container">
6
+ <header>
7
+ <div id="name-wrapper">
8
+ <div id="fullname">
9
+ {{ site.data.resume.name }}
10
+ </div>
11
+ <div id="jobtitle">
12
+ {{ site.data.resume.jobtitle }}
13
+ </div>
14
+ </div>
15
+ <div id="contact">
16
+ {% for item in site.data.resume.contact %}
17
+ <div class="contact-item">
18
+ {% if item.link %}
19
+ <a href="{{ item.link }}">
20
+ {% endif %}
21
+ <i class="fa {{ item.icon }} aria-hidden="true></i> {{ item.text }}
22
+ {% if item.link %}
23
+ </a>
24
+ {% endif %}
25
+ </div>
26
+ {% endfor %}
27
+ </div>
28
+ </header>
29
+
30
+ <section id="education">
31
+ <div class="section-title">
32
+ Education
33
+ </div>
34
+ <div class="section-content">
35
+ {% for edu in site.data.resume.education %}
36
+ <div class="block">
37
+ <div class="block-title">
38
+ {{ edu.university }}
39
+ </div>
40
+ <div class="block-subtitle">
41
+ {{ edu.duration }} | {{ edu.location }}
42
+ </div>
43
+ <div class="block-content">
44
+ {{ edu.major }}
45
+ </div>
46
+ </div>
47
+ {% endfor %}
48
+ </div>
49
+ </section>
50
+
51
+ <section id="skills">
52
+ <div class="section-title">
53
+ Skills
54
+ </div>
55
+ <div class="section-content">
56
+ {% for skill in site.data.resume.skills %}
57
+ <div class="block">
58
+ <div class="block-title">
59
+ {{ skill.title }}
60
+ </div>
61
+ <div class="block-content">
62
+ {{ skill.items }}
63
+ </div>
64
+ </div>
65
+ {% endfor %}
66
+ </div>
67
+ </section>
68
+
69
+ <section id="experience">
70
+ <div class="section-title">
71
+ Experience
72
+ </div>
73
+ <div class="section-content">
74
+ {% for exp in site.data.resume.experience %}
75
+ <div class="block">
76
+ <div class="block-title">
77
+ {{ exp.title }}
78
+ </div>
79
+ <div class="block-subtitle">
80
+ {{ exp.duration }} | {{ exp.company }}
81
+ </div>
82
+ <div class="block-content">
83
+ {{ exp.description }}
84
+ </div>
85
+ </div>
86
+ {% endfor %}
87
+ </div>
88
+ </section>
89
+
90
+ <section id="projects">
91
+ <div class="section-title">
92
+ Projects
93
+ </div>
94
+ <div class="section-content">
95
+ {% for project in site.data.resume.projects %}
96
+ <div class="block">
97
+ <div class="block-title">
98
+ {{ project.name }}
99
+ </div>
100
+ <div class="block-subtitle">
101
+ {{ project.contribution }}
102
+ </div>
103
+ <div class="block-content">
104
+ {{ project.description }}
105
+ </div>
106
+ </div>
107
+ {% endfor %}
108
+ </div>
109
+ </section>
110
+
111
+ <section id="languages">
112
+ <div class="section-title">
113
+ Languages
114
+ </div>
115
+ <div class="section-content section-flex">
116
+ {% for language in site.data.resume.languages %}
117
+ <div class="block block-square">
118
+ <div class="block-title">
119
+ {{ language.name }}
120
+ </div>
121
+ <div class="block-content">
122
+ {{ language.proficiency }}
123
+ </div>
124
+ </div>
125
+ {% endfor %}
126
+ </div>
127
+ </section>
128
+ </div>
@@ -0,0 +1,128 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="container">
6
+ <header>
7
+ <div id="name-wrapper">
8
+ <div id="fullname">
9
+ {{ site.data.resume_zhcn.name }}
10
+ </div>
11
+ <div id="jobtitle">
12
+ {{ site.data.resume_zhcn.jobtitle }}
13
+ </div>
14
+ </div>
15
+ <div id="contact">
16
+ {% for item in site.data.resume_zhcn.contact %}
17
+ <div class="contact-item">
18
+ {% if item.link %}
19
+ <a href="{{ item.link }}">
20
+ {% endif %}
21
+ <i class="fa {{ item.icon }} aria-hidden="true></i> {{ item.text }}
22
+ {% if item.link %}
23
+ </a>
24
+ {% endif %}
25
+ </div>
26
+ {% endfor %}
27
+ </div>
28
+ </header>
29
+
30
+ <section id="education">
31
+ <div class="section-title">
32
+ 教育
33
+ </div>
34
+ <div class="section-content">
35
+ {% for edu in site.data.resume_zhcn.education %}
36
+ <div class="block">
37
+ <div class="block-title">
38
+ {{ edu.university }}
39
+ </div>
40
+ <div class="block-subtitle">
41
+ {{ edu.duration }} | {{ edu.location }}
42
+ </div>
43
+ <div class="block-content">
44
+ {{ edu.major }}
45
+ </div>
46
+ </div>
47
+ {% endfor %}
48
+ </div>
49
+ </section>
50
+
51
+ <section id="skills">
52
+ <div class="section-title">
53
+ 专业技能
54
+ </div>
55
+ <div class="section-content">
56
+ {% for skill in site.data.resume_zhcn.skills %}
57
+ <div class="block">
58
+ <div class="block-title">
59
+ {{ skill.title }}
60
+ </div>
61
+ <div class="block-content">
62
+ {{ skill.items }}
63
+ </div>
64
+ </div>
65
+ {% endfor %}
66
+ </div>
67
+ </section>
68
+
69
+ <section id="experience">
70
+ <div class="section-title">
71
+ 工作经历
72
+ </div>
73
+ <div class="section-content">
74
+ {% for exp in site.data.resume_zhcn.experience %}
75
+ <div class="block">
76
+ <div class="block-title">
77
+ {{ exp.title }}
78
+ </div>
79
+ <div class="block-subtitle">
80
+ {{ exp.duration }} | {{ exp.company }}
81
+ </div>
82
+ <div class="block-content">
83
+ {{ exp.description }}
84
+ </div>
85
+ </div>
86
+ {% endfor %}
87
+ </div>
88
+ </section>
89
+
90
+ <section id="projects">
91
+ <div class="section-title">
92
+ 项目
93
+ </div>
94
+ <div class="section-content">
95
+ {% for project in site.data.resume_zhcn.projects %}
96
+ <div class="block">
97
+ <div class="block-title">
98
+ {{ project.name }}
99
+ </div>
100
+ <div class="block-subtitle">
101
+ {{ project.contribution }}
102
+ </div>
103
+ <div class="block-content">
104
+ {{ project.description }}
105
+ </div>
106
+ </div>
107
+ {% endfor %}
108
+ </div>
109
+ </section>
110
+
111
+ <section id="languages">
112
+ <div class="section-title">
113
+ 语言
114
+ </div>
115
+ <div class="section-content section-flex">
116
+ {% for language in site.data.resume_zhcn.languages %}
117
+ <div class="block block-square">
118
+ <div class="block-title">
119
+ {{ language.name }}
120
+ </div>
121
+ <div class="block-content">
122
+ {{ language.proficiency }}
123
+ </div>
124
+ </div>
125
+ {% endfor %}
126
+ </div>
127
+ </section>
128
+ </div>
@@ -0,0 +1,163 @@
1
+ html {
2
+ width: 100%;
3
+ font-size: 14px;
4
+ }
5
+ body {
6
+ text-align: center;
7
+ width: 100%;
8
+ font-family: "Noto Sans", "Segoe UI", Roboto, Helvetica, "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
9
+ -webkit-font-smoothing: antialiased;
10
+ font-size: 1rem;
11
+ margin: 0;
12
+ color: #555;
13
+ background-color: #fbfbfb;
14
+ }
15
+ a {
16
+ text-decoration: none;
17
+ color: #08c;
18
+ }
19
+ a:hover {
20
+ text-decoration: underline;
21
+ }
22
+ .container {
23
+ max-width: 48rem;
24
+ margin-left: auto;
25
+ margin-right: auto;
26
+ text-align: left;
27
+ margin-bottom: 1rem;
28
+ }
29
+ header {
30
+ display: flex;
31
+ justify-content: space-between;
32
+ border-bottom: .1rem solid #bbbbbb;
33
+ padding-top: 2.2rem;
34
+ padding-bottom: 2.2rem;
35
+ }
36
+ #name-wrapper {
37
+ padding-top: 1rem;
38
+ padding-bottom: 1rem;
39
+ }
40
+ #fullname {
41
+ font-size: 2.2rem;
42
+ }
43
+ #jobtitle {
44
+ font-size: 1.2rem;
45
+ margin-top: .8rem;
46
+ }
47
+ #contact {
48
+ font-size: 1rem;
49
+ padding-top: 1rem;
50
+ }
51
+ .contact-item:nth-child(1) {
52
+ margin-top: 0;
53
+ }
54
+ .contact-item {
55
+ margin-top: .4rem;
56
+ }
57
+ .contact-item a {
58
+ color: inherit;
59
+ text-decoration: none;
60
+ }
61
+ section {
62
+ display: flex;
63
+ padding-top: 2.4rem;
64
+ padding-bottom: 2.4rem;
65
+ padding-left: .2rem;
66
+ border-bottom: .1rem solid #bbbbbb;
67
+ hyphens: auto;
68
+ }
69
+ .section-title {
70
+ font-size: 1.6rem;
71
+ text-align: left;
72
+ min-width: 10rem;
73
+ }
74
+ .section-content {
75
+ }
76
+ .section-flex {
77
+ display: flex;
78
+ flex-wrap: wrap;
79
+ }
80
+ .block {
81
+ margin-bottom: 2rem;
82
+ }
83
+ .block-square {
84
+ width: 18rem;
85
+ }
86
+ .block-square:nth-last-child(2) {
87
+ margin-bottom: 0;
88
+ }
89
+ .block:last-child {
90
+ margin-bottom: 0;
91
+ }
92
+ .block-title {
93
+ font-size: 1.2rem;
94
+ margin-bottom: .4rem;
95
+ font-weight: bold;
96
+ }
97
+ .block-subtitle {
98
+ font-size: 1rem;
99
+ margin-bottom: 1rem;
100
+ color: #bbbbbb;
101
+ }
102
+ .block-content {
103
+ font-size: 1rem;
104
+ line-height: 1.5;
105
+ }
106
+ footer {
107
+ color: #bbbbbb;
108
+ font-size: 1rem;
109
+ min-height: 3rem;
110
+ line-height: 3rem;
111
+ margin-top: 1rem;
112
+ margin-bottom: 1rem;
113
+ }
114
+ @media print {
115
+ html {
116
+ font-size: 12px;
117
+ }
118
+ .print {
119
+ display: none;
120
+ }
121
+ }
122
+ @media screen and (max-width: 48rem) {
123
+ html {
124
+ font-size: 12px;
125
+ }
126
+ .container {
127
+ padding-left: .4rem;
128
+ padding-right: .4rem;
129
+ }
130
+ header {
131
+ display: block;
132
+ padding-bottom: 1rem;
133
+ }
134
+ #name-wrapper {
135
+ text-align: center;
136
+ padding-bottom: 2rem;
137
+ }
138
+ #contact {
139
+ padding-top: 1rem;
140
+ border-top: .1rem solid #bbbbbb;
141
+ }
142
+ .contact-item {
143
+ padding-top: .2rem;
144
+ padding-left: .4rem;
145
+ }
146
+ section {
147
+ display: block;
148
+ padding-top: 2rem;
149
+ padding-bottom: 2rem;
150
+ }
151
+ .section-title {
152
+ text-align: center;
153
+ margin-bottom: 2rem;
154
+ }
155
+ .section-flex {
156
+ display: block;
157
+ }
158
+ .block-square {
159
+ }
160
+ .block-square:nth-last-child(2) {
161
+ margin-bottom: 2rem;
162
+ }
163
+ }
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-minimal-resume
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.1
5
+ platform: ruby
6
+ authors:
7
+ - David Zhang
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-04-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ executables: []
58
+ extensions: []
59
+ extra_rdoc_files: []
60
+ files:
61
+ - LICENSE
62
+ - README.md
63
+ - _data/resume.yml
64
+ - _data/resume_zhcn.yml
65
+ - _includes/foot.html
66
+ - _includes/head.html
67
+ - _layouts/default.html
68
+ - _layouts/resume.html
69
+ - _layouts/resume_zh_cn.html
70
+ - assets/css/resume.css
71
+ homepage: https://github.com/crispgm/resume
72
+ licenses:
73
+ - MIT
74
+ metadata:
75
+ plugin_type: theme
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - "~>"
83
+ - !ruby/object:Gem::Version
84
+ version: '2.3'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubygems_version: 3.0.3
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: A minimalist resume template for Jekyll.
95
+ test_files: []