modern-resume-theme 2.0.2 → 2.0.6

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
  SHA256:
3
- metadata.gz: 7c7ad13b9e999380930bc1386d00451a93181493bccd43910bd9b60217ddf224
4
- data.tar.gz: 962ceeccceadbf311a502f7009a97b940a4be14f52df883f399c590025d66aac
3
+ metadata.gz: acc4446b8bd06a23d9755f1ecf7f8b71a62389fcfecdde8f4044274c46059a65
4
+ data.tar.gz: ecedff0e90c1a813f0afc22fd2bc4566f7858ffc227984a64d48a71aa3700819
5
5
  SHA512:
6
- metadata.gz: 8e0aebeefaa3e06012f9088b515b6c42a47884a4b9f837d2ab724efd68c94eacf31c0f17cde732454a76a0ff438ac833ad05a7376817fb4312c8bdd3c7ce478f
7
- data.tar.gz: 997720090a08e21c5124e3fc3be4001e8ed11815de6f90138aa7fc1dca5d41b29e94a2b96e27e0aa96fdceef2fa593eccf8520bd2d704d537ef3884a8278a8a2
6
+ metadata.gz: 0702bd1f81b1e141ad36e7d802f61ac8b2a6eb090133acdb79b441459f510ecdd6b1600ae2902a69e527fd1b79542d048131277337b79c4ab1b868ac06f73ddc
7
+ data.tar.gz: 42206da4f511c13378ee3f2b098612be664458f5f9d1404ce53a9d9f2214d9918d02a8fb3d06db4726d757f472bc9b6d32179e9cad3c002c980954348c658915
data/README.md CHANGED
@@ -112,6 +112,9 @@ When dark mode is `true` the site will show the dark theme for everyone
112
112
  When dark mode is `false` the site will not show the dark theme, but it will still respect the users device preferences
113
113
  When dark mode is `never` the site will never be shown in the dark theme
114
114
 
115
+ #### Heading Anchors
116
+ You can link to section titles using a Markdown anchor link, e.g.: `[About me](#about-me)`. The link after the `#` is the slug version of the title.
117
+
115
118
  ### `assets/main.scss`
116
119
  Add any css changes or additions you want to make here after the line `@import 'modern-resume-theme';`
117
120
 
data/_includes/about.html CHANGED
@@ -1,5 +1,6 @@
1
1
  <div class="container intro-container">
2
- <h3>{{ site.about_title | default: "About Me" }}</h3>
2
+ <h3 id="{{ site.about_title | slugify | default: 'about-me' }}">{{ site.about_title | default:
3
+ "About Me" }}</h3>
3
4
  <div class="row clearfix">
4
5
  {%- if site.about_profile_image -%}
5
6
  <div class="col-xs-12 col-sm-4 col-md-3 no-print">
@@ -1,4 +1,4 @@
1
- <div class="container header-contianer">
1
+ <div class="container header-container">
2
2
  <div class="row">
3
3
  <div class="col-xs-12 col-sm-6 col-md-6 col-lg-8 header-left">
4
4
  <h1>{{ site.name | escape }}</h1>
@@ -97,6 +97,13 @@
97
97
  </a>
98
98
  </li>
99
99
  {%- endif -%}
100
+ {%- if site.googlescholar_username -%}
101
+ <li>
102
+ <a target="_blank" href="https://scholar.google.com/citations?user={{ site.googlescholar_username| escape }}" class="button button--sacnite button--round-l">
103
+ <i class="fab fa-google" title="Google scholar link"></i>
104
+ </a>
105
+ </li>
106
+ {%- endif -%}
100
107
  {% for link in site.additional_links %}
101
108
  <li>
102
109
  {% include a.html href=link.url class="button button--sacnite button--round-l" %}
@@ -1,7 +1,7 @@
1
1
  {% for item in include.content %}
2
2
  <div class="row clearfix layout layout-{{item.layout | default: 'left'}}">
3
3
  <div class="col-xs-12 col-sm-4 col-md-3 col-print-12 details">
4
- <h4>{{ item.title }}</h4>
4
+ <h4 id="{{ item.title | slugify }}">{{ item.title }}</h4>
5
5
  {%- if item.sub_title -%}<p><b>{{ item.sub_title }}</b></p>{%- endif -%}
6
6
  {%- if item.caption -%}<p>{{ item.caption }}</p>{%- endif -%}
7
7
 
@@ -1,5 +1,5 @@
1
1
  <div class="container education-container">
2
- <h3>{{ site.education_title | default: "Education" }}</h3>
2
+ <h3 id="{{ site.education_title | slugify | default: 'education' }}">{{ site.education_title | default: "Education" }}</h3>
3
3
  {% for education in site.data.education %}
4
4
  {% include {{ education.layout | default: 'left' | append: ".html" | prepend: "v1/" }} item=education %}
5
5
  {% endfor %}
@@ -1,5 +1,5 @@
1
1
  <div class="container experience-container">
2
- <h3>{{ site.experience_title | default: "Experience" }}</h3>
2
+ <h3 id="{{ site.experience_title | slugify | default: 'experience' }}">{{ site.experience_title | default: "Experience" }}</h3>
3
3
  {% for experience in site.data.experience %}
4
4
  {% include {{ experience.layout | default: 'left' | append: ".html" | prepend: "v1/" }} item=experience %}
5
5
  {% endfor %}
@@ -1,5 +1,5 @@
1
1
  <div class="container more-container">
2
- <h3>{{ site.more_title | default: "A Little More About Me" }}</h3>
2
+ <h3 id="{{ site.more_title | slugify | default: 'a-little-bit-more-about-me' }}">{{ site.more_title | default: "A Little More About Me" }}</h3>
3
3
  <div class="row clearfix">
4
4
  <div class="col-md-12">
5
5
  {{ site.more_content | strip | markdownify }}
@@ -1,5 +1,5 @@
1
1
  <div class="container projects-container">
2
- <h3>{{ site.projects_title | default: "Projects" }}</h3>
2
+ <h3 id="{{ site.projects_title | slugify | default: 'projects'}}">{{ site.projects_title | default: "Projects" }}</h3>
3
3
  {% for project in site.data.projects %}
4
4
  {% include {{ project.layout | default: 'left' | append: ".html" | prepend: "v1/" }} item=project %}
5
5
  {% endfor %}
@@ -19,7 +19,7 @@
19
19
  {%- if site.version == 2 -%}
20
20
  {% for section in site.content %}
21
21
  <div class="container {{ section.layout }}-container">
22
- <h3>{{ section.title }}</h3>
22
+ <h3 id="{{ section.title | slugify }}">{{ section.title }}</h3>
23
23
  {% include {{ section.layout | prepend: "section-" | append: ".html" }} content=section.content %}
24
24
  </div>
25
25
  {% endfor %}
data/_sass/base.scss CHANGED
@@ -162,7 +162,7 @@ body {
162
162
  }
163
163
  }
164
164
 
165
- .header-contianer {
165
+ .header-container {
166
166
  margin-top:50px;
167
167
  }
168
168
 
@@ -14,7 +14,7 @@
14
14
  }
15
15
 
16
16
  @media screen and (max-width: 768px) {
17
- .header-contianer div{
17
+ .header-container div{
18
18
  text-align: center;
19
19
  }
20
20
 
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: 2.0.2
4
+ version: 2.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Grant
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-27 00:00:00.000000000 Z
11
+ date: 2022-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: github-pages
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  - !ruby/object:Gem::Version
112
112
  version: '0'
113
113
  requirements: []
114
- rubygems_version: 3.0.3
114
+ rubygems_version: 3.0.3.1
115
115
  signing_key:
116
116
  specification_version: 4
117
117
  summary: A modern simple static resume template and theme. Powered by Jekyll and GitHub