diff --git a/lib/jekyll/post.rb b/lib/jekyll/post.rb index fabbaf85..9f1eec1f 100644 --- a/lib/jekyll/post.rb +++ b/lib/jekyll/post.rb @@ -145,11 +145,11 @@ module Jekyll # # Returns def to_liquid - { "title" => self.data["title"] || "", + self.data.merge({ "title" => self.data["title"] || "", "url" => self.url, "date" => self.date, "id" => self.id, - "content" => self.content } + "content" => self.content }) end end