Theme: for various path helpers, use strings. Symbols confuse people.

This commit is contained in:
Parker Moore 2016-09-19 13:47:51 -07:00
parent 74baeb889a
commit 7309ecf8e1
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 4 additions and 4 deletions

View File

@ -18,19 +18,19 @@ module Jekyll
end
def includes_path
path_for :_includes
path_for "_includes".freeze
end
def layouts_path
path_for :_layouts
path_for "_layouts".freeze
end
def sass_path
path_for :_sass
path_for "_sass".freeze
end
def assets_path
path_for :assets
path_for "assets".freeze
end
def configure_sass