modern-resume-theme 2.0.1 → 2.0.5

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: 8fa83f662a358b1e089e6e87ec065a3d7fef0b51eb04ea17cba5a0cf3c393c39
4
- data.tar.gz: 592781d788558cc428a61682e62a48ceb3f2ec62ababe18a4d62c51d4bed6508
3
+ metadata.gz: 168cf65113852ba8a4dd576e2f562c7155ebcdf2eb2ed83c524c9cd6a5f605ba
4
+ data.tar.gz: fdf5f27f50396f72707266cdad44ed8e09174fd27f356afa15602e94bf7b435b
5
5
  SHA512:
6
- metadata.gz: 612491416cba06bc5a230bfc7d42d8ae61ed9b39e219152a81fe9a70a6a1e47f3a8bfe0751d00cdfd9c0bdd293bf10d1f5b14e4cc96e7097a64d8dbbcaef0e46
7
- data.tar.gz: 64e71fe0f1b418a5d1f045d46546bff0b6814a6226fc844a42be0ce888a8353f122cb504d26c49e0a04c49fd4d2b982b9c168909499593c4cdc4629cab22c400
6
+ metadata.gz: b07b4d731de2852e814cdbb9d5318ece8b2d9af17af062466a6c0cf10b6644cb716a89d69683edafe85b2dd0894e1ed2cbcc84c1173f945a2de3fdcba094462c
7
+ data.tar.gz: 5145af5504acea8587a3ae099f282f56d5c67d5266e3260de1398683b288c87d4388bd881e5276944d56a01dc0e39a87f66a7b9bcd2cc21aad48793eb9a3fe59
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # modern-resume-theme [![Gem Version](https://badge.fury.io/rb/modern-resume-theme.svg)](https://badge.fury.io/rb/modern-resume-theme) [![Build Status](https://travis-ci.com/sproogen/modern-resume-theme.svg?branch=master)](https://travis-ci.com/sproogen/modern-resume-theme)
1
+ # modern-resume-theme [![Gem Version](https://badge.fury.io/rb/modern-resume-theme.svg)](https://badge.fury.io/rb/modern-resume-theme) ![CI workflow](https://github.com/sproogen/modern-resume-theme/workflows/CI%20workflow/badge.svg?branch=master)
2
2
 
3
3
  *A modern simple static resume template and theme. Powered by Jekyll and GitHub pages.*
4
4
  *Host your own resume on GitHub for **free!***
@@ -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">
@@ -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 %}
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.1
4
+ version: 2.0.5
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