Skip to content

Commit

Permalink
Merge pull request academicpages#172 from aki-nishimura/master
Browse files Browse the repository at this point in the history
Address deprecation warnings and Liquid related errors.
  • Loading branch information
staeiou authored Nov 27, 2018
2 parents 79983e8 + 3207fc3 commit 7a14977
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ timezone: America/Los_Angeles # http://en.wikipedia.org/wiki/List_of_tz_database


# Plugins
gems:
plugins:
- jekyll-paginate
- jekyll-sitemap
- jekyll-gist
Expand Down
2 changes: 1 addition & 1 deletion _layouts/talk.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

{% include base_path %}

{% if (page.header.overlay_color or page.header.overlay_image) or page.header.image %}
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
{% include page__hero.html %}
{% endif %}

Expand Down
2 changes: 1 addition & 1 deletion _sass/vendor/susy/susy/output/support/_support.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

@each $_type, $_req in $requirements {
@each $_i in $_req {
$_pass: call(unquote("#{$_type}-exists"), $_i);
$_pass: call(get-function(unquote("#{$_type}-exists")), $_i);

@if not($_pass) {
$_fail: true;
Expand Down

0 comments on commit 7a14977

Please sign in to comment.