jekyll-extensions

jekyll - add stuff to pages automatically, on github pages

Hi! Is there a way to obtain the url of a page on Jekyll? By pages I mean non-post textile files, like about.html and download.html on the following hierarchy: root | +- _includes | +- _layouts | +- _posts | +- _config.yml | +- index.textile | +- about.textile | `- download.textile I'd like to do something like this: <...

Extending Jekyll and Liquid to parse post's content

My blog, powerred by Jekyll, serves out a Atom feed. --- layout: nill rooturi: http://stefan.artspace44.com --- <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"&gt; ... {% for post in site.posts %} <entry> <title>{{ post.title }}</title> <link href="{{ page.rooturi }}{{ post.url }}" /> <u...