modern-resume-theme 1.5.3 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 362be4880dcc36833ce6617e9a184870c9f80725
4
- data.tar.gz: c7b47f176c11be8a9fda1e958717f00793c10511
3
+ metadata.gz: 143eed304942f78b0f297c0ef19cfdf3f4e9c00f
4
+ data.tar.gz: 9b9cb75b40c208afc0b0658fb07c0aa8ae2ffaae
5
5
  SHA512:
6
- metadata.gz: 5b7e15671a15a0af0f6156c3c906a2c8085c596f20425552980659a7386c3797b300c452561d30594164a4d8af79da5545b8efd1fd467cb7c79064f3b4cfde58
7
- data.tar.gz: d6d1701f25c92bb475b6b94d712e59f6398015c672554e524aad092898b8cfdc73daf50d00205813e9e5868176eed233e243d24d4554243e3bc95da0e9d97615
6
+ metadata.gz: 27130bde0dd859c57740a211c5dfe0a5eb4aa2d299fd8908ac820330b88456ca437c73b52a269efb626d9346249740188fd6b78a5569b468fe517904b2c744ac
7
+ data.tar.gz: bc5062db703fd47a893bb9f1a0e5021b276cc1fddd422b81f710c11d08e9d257f8786f8ac2953180b99171657291e5b61dfbe2e17e4ad8576d1f06a79740a5ff
data/README.md CHANGED
@@ -11,8 +11,6 @@
11
11
 
12
12
  *I always enjoy seeing how people are using my creations and if you would like to say thanks feel free to [buy me a coffee (buymeacoffee.com/vJ6HfLu)](https://buymeacoff.ee/vJ6HfLu).*
13
13
 
14
- [![Buy me a coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/vJ6HfLu)
15
-
16
14
  *If you would like to see how I am using this then you can view my resume [here (jameswgrant.co.uk)](http://www.jameswgrant.co.uk/) and find the code [here (sproogen/jameswgrant)](https://github.com/sproogen/jameswgrant), hopefully this might help you.*
17
15
 
18
16
  You can view the project [roadmap here](https://github.com/sproogen/modern-resume-theme/projects/1).
@@ -52,7 +50,8 @@ A full example of the _config.yml can be found [here](https://github.com/sprooge
52
50
  ##### _data/education.yml
53
51
  A list of all your education, each education will follow this format
54
52
  ```
55
- - name: Institution name
53
+ - layout: left (options: left, right, top, top-right, top-middle)
54
+ name: Institution name
56
55
  dates: Date Range (eg. 2016 - 2019)
57
56
  qualification: Qualifications (eg. BA Performing Arts)
58
57
  quote: >
@@ -64,7 +63,8 @@ A list of all your education, each education will follow this format
64
63
  ##### _data/experience.yml
65
64
  A list of all your experience, each experience will follow this format
66
65
  ```
67
- - company: Company name
66
+ - layout: left (options: left, right, top, top-right, top-middle)
67
+ company: Company name
68
68
  link: Link to company (eg. https://google.com)(optional)
69
69
  job_title: Job title
70
70
  dates: Date Range (eg. November 2016 - present)
@@ -74,9 +74,10 @@ A list of all your experience, each experience will follow this format
74
74
  Description of role
75
75
  ```
76
76
 
77
- If you wish to specify multiple titles for a single company, use this format
77
+ If you wish to specify multiple job titles for a single company, use this format
78
78
  ```
79
- - company: Company name
79
+ - layout: left (options: left, right, top, top-right, top-middle)
80
+ company: Company name
80
81
  link: Link to company (optional)
81
82
  jobs:
82
83
  - title: Job title 1
@@ -92,7 +93,8 @@ If you wish to specify multiple titles for a single company, use this format
92
93
  ##### _data/projects.yml
93
94
  A list of all your projects, each project will follow this format
94
95
  ```
95
- - name: Project name
96
+ - layout: left (options: left, right, top, top-right, top-middle)
97
+ name: Project name
96
98
  link: Link to project (eg. https://sproogen.github.io/modern-resume-theme)(optional)
97
99
  github: Github page for project (eg. sproogen/modern-resume-theme)(optional)
98
100
  quote: >
@@ -101,6 +103,9 @@ A list of all your projects, each project will follow this format
101
103
  Description about the work on/with the project
102
104
  ```
103
105
 
106
+ ##### assets/main.scss
107
+ Add any css changes or additions you want to make here after the line `@import 'modern-resume-theme';`
108
+
104
109
  ## Running locally
105
110
 
106
111
  Before you start make sure you have *Ruby* and the gems for *Jekyll* installed locally. You can find out how to do that [here](https://jekyllrb.com/docs/installation/).
@@ -122,8 +127,12 @@ This project is intended to be a safe, welcoming space for collaboration, and co
122
127
 
123
128
  ## Development
124
129
 
130
+ ### Locally
131
+
125
132
  Before you start make sure you have *Ruby* and the gems for *Jekyll* installed locally. You can find out how to do that [here](https://jekyllrb.com/docs/installation/).
126
133
 
134
+ *Note: You will need version `1.15.2` of bundler, as this is the only version that Heroku supports.*
135
+
127
136
  1. Fork and or clone this repository locally
128
137
  2. `cd modern-resume-theme`
129
138
  3. `bundle install`
@@ -134,6 +143,10 @@ Any changes you make will automatically build and you will be able to see these
134
143
 
135
144
  *Note: You will need to re-run `bundle exec jekyll serve` to see changes made in `_config.yml`.*
136
145
 
146
+ ### Docker
147
+
148
+ If you have docker installed you can simply run `docker-compose up` to launch the site in a container, it will then be hosted at `http://localhost:4000`
149
+
137
150
  ## License
138
151
 
139
152
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,18 +1,6 @@
1
1
  <div class="container education-container">
2
2
  <h3>{{ site.education_title | default: "Education" }}</h3>
3
3
  {% for education in site.data.education %}
4
- <div class="row clearfix education">
5
- <div class="col-xs-12 col-sm-4 col-md-3 col-print-12 left-column">
6
- <h4>{{ education.name }}</h4>
7
- <p><b>{{ education.qualification }}</b></p>
8
- <p>{{ education.dates }}</p>
9
- </div>
10
- <div class="col-xs-12 col-sm-8 col-md-9 col-print-12">
11
- {%- if education.quote -%}
12
- <p class="quote">{{ education.quote }}</p>
13
- {%- endif -%}
14
- {{ education.description | strip | markdownify }}
15
- </div>
16
- </div>
4
+ {% include {{ education.layout | default: 'left' | append: ".html" }} item=education %}
17
5
  {% endfor %}
18
6
  </div>
@@ -1,30 +1,6 @@
1
1
  <div class="container experience-container">
2
2
  <h3>{{ site.experience_title | default: "Experience" }}</h3>
3
3
  {% for experience in site.data.experience %}
4
- <div class="row clearfix experience">
5
- <div class="col-xs-12 col-sm-4 col-md-3 col-print-12 left-column">
6
- <h4 class="name">
7
- {%- if experience.link -%}
8
- {% include a.html href=experience.link %}
9
- {%- endif -%}
10
- {{ experience.company }}
11
- {%- if experience.link -%}
12
- </a>
13
- {%- endif -%}
14
- </h4>
15
- <p><b>{{ experience.job_title }}</b></p>
16
- <p>{{ experience.dates }}</p>
17
- {% for job in experience.jobs %}
18
- <p><b>{{ job.title }}</b></p>
19
- <p>{{ job.dates }}</p>
20
- {% endfor %}
21
- </div>
22
- <div class="col-xs-12 col-sm-8 col-md-9 col-print-12">
23
- {%- if experience.quote -%}
24
- <p class="quote">{{ experience.quote }}</p>
25
- {%- endif -%}
26
- {{ experience.description | strip | markdownify }}
27
- </div>
28
- </div>
4
+ {% include {{ experience.layout | default: 'left' | append: ".html" }} item=experience %}
29
5
  {% endfor %}
30
6
  </div>
@@ -0,0 +1,29 @@
1
+ <div class="row clearfix layout layout-left">
2
+ <div class="col-xs-12 col-sm-4 col-md-3 col-print-12 details">
3
+ {%- if include.item.name -%}<h4>{{ include.item.name }}</h4>{%- endif -%}
4
+ {%- if include.item.company -%}<h4>{{ include.item.company }}</h4>{%- endif -%}
5
+ {%- if include.item.link -%}
6
+ {% include a.html href=include.item.link class="link" %}{{ include.item.link }}</a>
7
+ {%- endif -%}
8
+ {%- if include.item.job_title -%}<p><b>{{ include.item.job_title }}</b></p>{%- endif -%}
9
+ {%- if include.item.qualification -%}<p><b>{{ include.item.qualification }}</b></p>{%- endif -%}
10
+ {%- if include.item.dates -%}<p>{{ include.item.dates }}</p>{%- endif -%}
11
+ {% for job in include.item.jobs %}
12
+ <p><b>{{ job.title }}</b></p>
13
+ <p>{{ job.dates }}</p>
14
+ {% endfor %}
15
+ {%- if include.item.github -%}
16
+ <p class="no-print">
17
+ <a href="https://github.com/{{ include.item.github }}" target="_blank">
18
+ <i class="fa fa-github" title="{{ include.item.name }} Github link"></i>
19
+ </a>
20
+ </p>
21
+ {%- endif -%}
22
+ </div>
23
+ <div class="col-xs-12 col-sm-8 col-md-9 col-print-12">
24
+ {%- if include.item.quote -%}
25
+ <p class="quote">{{ include.item.quote }}</p>
26
+ {%- endif -%}
27
+ {{ include.item.description | strip | markdownify }}
28
+ </div>
29
+ </div>
@@ -1,24 +1,6 @@
1
1
  <div class="container projects-container">
2
2
  <h3>{{ site.projects_title | default: "Projects" }}</h3>
3
3
  {% for project in site.data.projects %}
4
- <div class="row clearfix project">
5
- <div class="col-xs-12 col-sm-4 col-md-3 col-print-12 left-column">
6
- <h4>{{ project.name }}</h4>
7
- {%- if project.link -%}
8
- {% include a.html href=project.link class="project-link" %}{{ project.link }}</a>
9
- {%- endif -%}
10
- <p class="no-print">
11
- <a href="https://github.com/{{ project.github }}" target="_blank">
12
- <i class="fa fa-github" title="{{ project.name }} Github link"></i>
13
- </a>
14
- </p>
15
- </div>
16
- <div class="col-xs-12 col-sm-8 col-md-9 col-print-12">
17
- {%- if project.quote -%}
18
- <p class="quote">{{ project.quote }}</p>
19
- {%- endif -%}
20
- {{ project.description | strip | markdownify }}
21
- </div>
22
- </div>
4
+ {% include {{ project.layout | default: 'left' | append: ".html" }} item=project %}
23
5
  {% endfor %}
24
6
  </div>
@@ -0,0 +1,29 @@
1
+ <div class="row clearfix layout layout-right">
2
+ <div class="col-xs-12 col-sm-8 col-md-9 col-print-12">
3
+ {%- if include.item.quote -%}
4
+ <p class="quote">{{ include.item.quote }}</p>
5
+ {%- endif -%}
6
+ {{ include.item.description | strip | markdownify }}
7
+ </div>
8
+ <div class="col-xs-12 col-sm-4 col-md-3 col-print-12 details">
9
+ {%- if include.item.name -%}<h4>{{ include.item.name }}</h4>{%- endif -%}
10
+ {%- if include.item.company -%}<h4>{{ include.item.company }}</h4>{%- endif -%}
11
+ {%- if include.item.link -%}
12
+ {% include a.html href=include.item.link class="link" %}{{ include.item.link }}</a>
13
+ {%- endif -%}
14
+ {%- if include.item.job_title -%}<p><b>{{ include.item.job_title }}</b></p>{%- endif -%}
15
+ {%- if include.item.qualification -%}<p><b>{{ include.item.qualification }}</b></p>{%- endif -%}
16
+ {%- if include.item.dates -%}<p>{{ include.item.dates }}</p>{%- endif -%}
17
+ {% for job in include.item.jobs %}
18
+ <p><b>{{ job.title }}</b></p>
19
+ <p>{{ job.dates }}</p>
20
+ {% endfor %}
21
+ {%- if include.item.github -%}
22
+ <p class="no-print">
23
+ <a href="https://github.com/{{ include.item.github }}" target="_blank">
24
+ <i class="fa fa-github" title="{{ include.item.name }} Github link"></i>
25
+ </a>
26
+ </p>
27
+ {%- endif -%}
28
+ </div>
29
+ </div>
@@ -0,0 +1,29 @@
1
+ <div class="row clearfix layout layout-top-middle">
2
+ <div class="col-xs-12 col-print-12 details">
3
+ {%- if include.item.name -%}<h4>{{ include.item.name }}</h4>{%- endif -%}
4
+ {%- if include.item.company -%}<h4>{{ include.item.company }}</h4>{%- endif -%}
5
+ {%- if include.item.link -%}
6
+ {% include a.html href=include.item.link class="link" %}{{ include.item.link }}</a>
7
+ {%- endif -%}
8
+ {%- if include.item.job_title -%}<p><b>{{ include.item.job_title }}</b></p>{%- endif -%}
9
+ {%- if include.item.qualification -%}<p><b>{{ include.item.qualification }}</b></p>{%- endif -%}
10
+ {%- if include.item.dates -%}<p>{{ include.item.dates }}</p>{%- endif -%}
11
+ {% for job in include.item.jobs %}
12
+ <p><b>{{ job.title }}</b></p>
13
+ <p>{{ job.dates }}</p>
14
+ {% endfor %}
15
+ {%- if include.item.github -%}
16
+ <p class="no-print">
17
+ <a href="https://github.com/{{ include.item.github }}" target="_blank">
18
+ <i class="fa fa-github" title="{{ include.item.name }} Github link"></i>
19
+ </a>
20
+ </p>
21
+ {%- endif -%}
22
+ </div>
23
+ <div class="col-xs-12 col-print-12">
24
+ {%- if include.item.quote -%}
25
+ <p class="quote">{{ include.item.quote }}</p>
26
+ {%- endif -%}
27
+ {{ include.item.description | strip | markdownify }}
28
+ </div>
29
+ </div>
@@ -0,0 +1,29 @@
1
+ <div class="row clearfix layout layout-top-right">
2
+ <div class="col-xs-12 col-print-12 details">
3
+ {%- if include.item.name -%}<h4>{{ include.item.name }}</h4>{%- endif -%}
4
+ {%- if include.item.company -%}<h4>{{ include.item.company }}</h4>{%- endif -%}
5
+ {%- if include.item.link -%}
6
+ {% include a.html href=include.item.link class="link" %}{{ include.item.link }}</a>
7
+ {%- endif -%}
8
+ {%- if include.item.job_title -%}<p><b>{{ include.item.job_title }}</b></p>{%- endif -%}
9
+ {%- if include.item.qualification -%}<p><b>{{ include.item.qualification }}</b></p>{%- endif -%}
10
+ {%- if include.item.dates -%}<p>{{ include.item.dates }}</p>{%- endif -%}
11
+ {% for job in include.item.jobs %}
12
+ <p><b>{{ job.title }}</b></p>
13
+ <p>{{ job.dates }}</p>
14
+ {% endfor %}
15
+ {%- if include.item.github -%}
16
+ <p class="no-print">
17
+ <a href="https://github.com/{{ include.item.github }}" target="_blank">
18
+ <i class="fa fa-github" title="{{ include.item.name }} Github link"></i>
19
+ </a>
20
+ </p>
21
+ {%- endif -%}
22
+ </div>
23
+ <div class="col-xs-12 col-print-12">
24
+ {%- if include.item.quote -%}
25
+ <p class="quote">{{ include.item.quote }}</p>
26
+ {%- endif -%}
27
+ {{ include.item.description | strip | markdownify }}
28
+ </div>
29
+ </div>
@@ -0,0 +1,29 @@
1
+ <div class="row clearfix layout layout-top">
2
+ <div class="col-xs-12 col-print-12 details">
3
+ {%- if include.item.name -%}<h4>{{ include.item.name }}</h4>{%- endif -%}
4
+ {%- if include.item.company -%}<h4>{{ include.item.company }}</h4>{%- endif -%}
5
+ {%- if include.item.link -%}
6
+ {% include a.html href=include.item.link class="link" %}{{ include.item.link }}</a>
7
+ {%- endif -%}
8
+ {%- if include.item.job_title -%}<p><b>{{ include.item.job_title }}</b></p>{%- endif -%}
9
+ {%- if include.item.qualification -%}<p><b>{{ include.item.qualification }}</b></p>{%- endif -%}
10
+ {%- if include.item.dates -%}<p>{{ include.item.dates }}</p>{%- endif -%}
11
+ {% for job in include.item.jobs %}
12
+ <p><b>{{ job.title }}</b></p>
13
+ <p>{{ job.dates }}</p>
14
+ {% endfor %}
15
+ {%- if include.item.github -%}
16
+ <p class="no-print">
17
+ <a href="https://github.com/{{ include.item.github }}" target="_blank">
18
+ <i class="fa fa-github" title="{{ include.item.name }} Github link"></i>
19
+ </a>
20
+ </p>
21
+ {%- endif -%}
22
+ </div>
23
+ <div class="col-xs-12 col-print-12">
24
+ {%- if include.item.quote -%}
25
+ <p class="quote">{{ include.item.quote }}</p>
26
+ {%- endif -%}
27
+ {{ include.item.description | strip | markdownify }}
28
+ </div>
29
+ </div>
@@ -100,10 +100,10 @@ ul.icons a {
100
100
  }
101
101
  }
102
102
 
103
- .experience, .education, .project {
103
+ .layout {
104
104
  margin-top: 3em;
105
105
 
106
- .left-column {
106
+ .details {
107
107
  text-align: left;
108
108
 
109
109
  p {
@@ -135,12 +135,12 @@ ul.icons a {
135
135
  font-size: 2em;
136
136
  }
137
137
 
138
- .project-link {
138
+ .link {
139
139
  font-size: 1.5em;
140
140
  }
141
141
 
142
142
  h4 {
143
- margin-bottom: 0.4em;
143
+ margin-bottom: 0.1em;
144
144
  font-weight: 500;
145
145
 
146
146
  @media print {
@@ -154,6 +154,18 @@ ul.icons a {
154
154
  }
155
155
  }
156
156
 
157
+ .layout-right, .layout-top-right {
158
+ .details {
159
+ text-align: right;
160
+ }
161
+ }
162
+
163
+ .layout-top-middle {
164
+ .details {
165
+ text-align: center;
166
+ }
167
+ }
168
+
157
169
  .footer-container {
158
170
  margin-top:100px;
159
171
  }
data/assets/main.scss CHANGED
@@ -2,4 +2,4 @@
2
2
  # Front matter comment to ensure Jekyll properly reads file.
3
3
  ---
4
4
 
5
- @import 'modern-resume-theme'
5
+ @import 'modern-resume-theme';
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: modern-resume-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.3
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Grant
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-21 00:00:00.000000000 Z
11
+ date: 2019-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: github-pages
@@ -38,20 +38,6 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '2.1'
41
- - !ruby/object:Gem::Dependency
42
- name: bundler
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: 2.0.1
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: 2.0.1
55
41
  - !ruby/object:Gem::Dependency
56
42
  name: html-proofer
57
43
  requirement: !ruby/object:Gem::Requirement
@@ -83,8 +69,13 @@ files:
83
69
  - _includes/google-analytics.html
84
70
  - _includes/head.html
85
71
  - _includes/header.html
72
+ - _includes/left.html
86
73
  - _includes/more.html
87
74
  - _includes/projects.html
75
+ - _includes/right.html
76
+ - _includes/top-middle.html
77
+ - _includes/top-right.html
78
+ - _includes/top.html
88
79
  - _layouts/default.html
89
80
  - _sass/base.scss
90
81
  - _sass/button.scss