From ea8b0bd856497faa14750c687b53e339ab7b5447 Mon Sep 17 00:00:00 2001 From: Andrew Mack <65462867+armack@users.noreply.github.com> Date: Sun, 2 May 2021 14:58:39 -0400 Subject: [PATCH 1/2] Fix Google Scholar link on publicaitons page --- _pages/publications.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_pages/publications.md b/_pages/publications.md index de7be7200181..5f7d30b97fba 100644 --- a/_pages/publications.md +++ b/_pages/publications.md @@ -4,6 +4,9 @@ title: "Publications" permalink: /publications/ author_profile: true --- +{% if page.author and site.data.authors[page.author] %} + {% assign author = site.data.authors[page.author] %}{% else %}{% assign author = site.author %} +{% endif %} {% if author.googlescholar %} You can also find my articles on my Google Scholar profile. From 4cb3754117152e79dbc714b1716b1d48c875d54f Mon Sep 17 00:00:00 2001 From: Andrew Mack <65462867+armack@users.noreply.github.com> Date: Sun, 2 May 2021 16:37:49 -0400 Subject: [PATCH 2/2] Fixes to run locally for development purposes --- .gitignore | 1 + Gemfile | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bd5d18888f29..6b19f2b5bcbd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ _site/ +Gemfile.lock diff --git a/Gemfile b/Gemfile index 1629566cf419..9af5ff7746be 100644 --- a/Gemfile +++ b/Gemfile @@ -9,12 +9,12 @@ source "https://rubygems.org" # This will help ensure the proper Jekyll version is running. # Happy Jekylling! -gem "github-pages", group: :jekyll_plugins + gem 'github-pages', '~> 214', group: :jekyll_plugins # If you want to use Jekyll native, uncomment the line below. # To upgrade, run `bundle update`. -# gem "jekyll" + gem "jekyll" gem "wdm", "~> 0.1.0" if Gem.win_platform?