Theme: for various path helpers, use strings. Symbols confuse people.
This commit is contained in:
parent
74baeb889a
commit
7309ecf8e1
|
@ -18,19 +18,19 @@ module Jekyll
|
||||||
end
|
end
|
||||||
|
|
||||||
def includes_path
|
def includes_path
|
||||||
path_for :_includes
|
path_for "_includes".freeze
|
||||||
end
|
end
|
||||||
|
|
||||||
def layouts_path
|
def layouts_path
|
||||||
path_for :_layouts
|
path_for "_layouts".freeze
|
||||||
end
|
end
|
||||||
|
|
||||||
def sass_path
|
def sass_path
|
||||||
path_for :_sass
|
path_for "_sass".freeze
|
||||||
end
|
end
|
||||||
|
|
||||||
def assets_path
|
def assets_path
|
||||||
path_for :assets
|
path_for "assets".freeze
|
||||||
end
|
end
|
||||||
|
|
||||||
def configure_sass
|
def configure_sass
|
||||||
|
|
Loading…
Reference in New Issue