ace/example/app/posts.rb
Jakub Šťastný aka Botanicus 4cc4e303ab Initial import
2010-10-20 14:42:17 +01:00

21 lines
311 B
Ruby

# encoding: utf-8
require "nokogiri"
require "ace/filters"
# Inheritted methods:
# - content
# - metadata
# - config
class Post < Ace::Item
before Ace::LayoutFilter, layout: "post.html"
def document
Nokogiri::HTML(self.content)
end
def excerpt
self.document.css("p.excerpt")
end
end