Allow path to be passed to page_classes
This allows tagging navigation links etc. in other pages with page classes
This commit is contained in:
parent
0a264fd3c2
commit
8b87670024
|
@ -121,8 +121,10 @@ class Middleman::CoreExtensions::DefaultHelpers < ::Middleman::Extension
|
||||||
# Generate body css classes based on the current path
|
# Generate body css classes based on the current path
|
||||||
#
|
#
|
||||||
# @return [String]
|
# @return [String]
|
||||||
def page_classes(options={})
|
def page_classes(path = current_path.dup, options={})
|
||||||
path = current_path.dup
|
if path.is_a? Hash
|
||||||
|
options = path
|
||||||
|
path = current_path.dup
|
||||||
path << index_file if path.end_with?('/')
|
path << index_file if path.end_with?('/')
|
||||||
path = ::Middleman::Util.strip_leading_slash(path)
|
path = ::Middleman::Util.strip_leading_slash(path)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue