class RuneBlog::Default # This will all become much more generic later. NewBlogHeader = <<-TEXT # Can't do this yet!! .mixin liveblog .title Fake Blog, Fake Title, Fake Author .asset fakeimage.jpg
.image fakeimage.jpg .h3 Yet another blog... .h4 by Kilgore Trout .br 2 If you're the kind of person who likes this sort of thing, then this is the sort of thing a person like you will like. .br 2 Don't you feel more like you do now than before you read this?
.hr TEXT BlogHeader = <<-TEXT Fake Blog, Fake Title, Fake Author

Yet another blog...

by Kilgore Trout



If you're the kind of person who likes this sort of thing, then this is the sort of thing a person like you will like.

Don't you feel more like you do now than before you read this?

TEXT BlogTrailer = <<-TEXT TEXT def RuneBlog.post_template(title: "No title", date: nil, view: "test_view", teaser: "No teaser", body: "No body", tags: [], views: []) viewlist = (views + [view.to_s]).join(" ") taglist = tags.join(" ") <<-TEXT .mixin liveblog .title #{title} .pubdate #{date} .views #{viewlist} .tags #{taglist} .teaser #{teaser} .end #{body} TEXT end def RuneBlog.teaser_template(title: "No title", date: nil, view: "test_view", teaser: "No teaser", body: "No body", slug: nil) <<-TEXT

#{title}
#{date}



#{body}
Back Home TEXT end end