Method: Jekyll::Page#permalink

Defined in:
lib/ngage/jekyll/page.rb

The full path and filename of the post. Defined in the YAML of the post body.

Returns the String permalink or nil if none has been set.



77
78
79
# File 'lib/ngage/jekyll/page.rb', line 77

def permalink
  data.nil? ? nil : data["permalink"]
end