Skip to content

Commit 7a14977

Browse files
authored
Merge pull request academicpages#172 from aki-nishimura/master
Address deprecation warnings and Liquid related errors.
2 parents 79983e8 + 3207fc3 commit 7a14977

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ timezone: America/Los_Angeles # http://en.wikipedia.org/wiki/List_of_tz_database
255255

256256

257257
# Plugins
258-
gems:
258+
plugins:
259259
- jekyll-paginate
260260
- jekyll-sitemap
261261
- jekyll-gist

_layouts/talk.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{% include base_path %}
66

7-
{% if (page.header.overlay_color or page.header.overlay_image) or page.header.image %}
7+
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
88
{% include page__hero.html %}
99
{% endif %}
1010

_sass/vendor/susy/susy/output/support/_support.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767

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

7272
@if not($_pass) {
7373
$_fail: true;

0 commit comments

Comments
 (0)