blog

Blog is a special type of page, having access to all articles in this blog.

articles

Returns list of all articles in this blog. Each list item is an article object.

rss_link

Generates LINK tag for RSS-feed. Use inside HEAD tag

{{ blog.rss_link }}
#=> <link rel="alternate" type="application/rss+xml" title="RSS" href="url/to/blog.rss">

rss_url

Generates url to RSS feed without generating a LINK tag:

<a href="{{ blog.rss_url }}">Subscribe to our blog</a>
#=> <a href="url/to/blog.rss">Subscribe to our blog</a>