zeus.ugent.be/lib/helpers/tile_helper.rb

8 lines
224 B
Ruby
Raw Normal View History

2017-02-07 22:30:11 +00:00
module TileHelper
def get_teaser(post)
2017-02-07 23:51:46 +00:00
# excerptize is part of the TextHelper, given by nanoc
# https://nanoc.ws/doc/reference/helpers/#text
excerptize(post.reps[:text].compiled_content, length: 300)
2017-02-07 22:30:11 +00:00
end
end