Skip to content

Instantly share code, notes, and snippets.

@phaer
Created April 10, 2011 16:06
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phaer/912466 to your computer and use it in GitHub Desktop.
Save phaer/912466 to your computer and use it in GitHub Desktop.
Simple Jekyll tag which displays the notices in a given status.net/ostatus feed.
require 'date'
require 'ostatus'
module Jekyll
class RenderOStatus < Liquid::Tag
def render(context)
site = context.registers[:site]
feed = OStatus::Feed.from_url(site.config['ostatus_feed'])
result = "<h2>#{feed.author.name}'s microblog</h2>"
result << "<ul class=\"ostatus\">"
feed.entries.each do |entry|
result << "<li>#{entry.content}</li>"
end
result << "</ul>"
result.force_encoding('utf-8')
end
end
end
Liquid::Template.register_tag('ostatus', Jekyll::RenderOStatus)
@phaer
Copy link
Author

phaer commented Jan 25, 2012

And it needs ostatus_feed in your _config.yml set to your ostatus atom feed.

@teiko
Copy link

teiko commented Jan 29, 2012

Thanks.
I've found another solution for my needs, but I'll bear that one in mind.
I'll integrate that later with another feed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment