Radiant is a no-fluff, open source content management system designed for small teams.
$ sudo gem install radiant; radiant my_site
$ svn checkout http://dev.radiantcms.org/svn/radiant/trunk/radiant
$ cd my_site; rake radiant:freeze:gems
$ rake radiant:freeze:edge
<r:tag_name attr="value" ... />
<r:tag_name attr="value" ... />
<r:tag_name attr="value" ... />
<!-- single tag -->
<r:tag_name attr="value" ... />
<!-- double tag -->
<r:tag_name attr="value" ... >
...
</r:tag_name>
<html>
<head>
<title>Example Page</title>
</head>
<body>
<div id="header">
<img src="logo.gif" />
</div>
<div id="content">
<h1>Example Page</h1>
<p>This is a small example page.</p>
</div>
<div id="sidebar">
<p>sidebar here</p>
</div>
<div id="footer">
<p>Copyright 2006, Example Person</p>
</div>
</body>
</html>
<html>
<head>
<title><r:title /></title>
</head>
<body>
<div id="header">
<img src="logo.gif" />
</div>
<div id="content">
<h1><r:title /></h1>
<p>This is a small example page.</p>
</div>
<div id="sidebar">
<p>sidebar here</p>
</div>
<div id="footer">
<p>Copyright 2006, Example Person</p>
</div>
</body>
</html>
<html>
<head>
<title><r:title /></title>
</head>
<body>
<r:snippet name="header" />
<div id="content">
<h1><r:title /></h1>
<p>This is a small example page.</p>
</div>
<div id="sidebar">
<p>sidebar here</p>
</div>
<r:snippet name="footer" />
</body>
</html>
<html>
<head>
<title><r:title /></title>
</head>
<body>
<r:snippet name="header" />
<div id="content">
<h1><r:title /></h1>
<r:content />
<r:content part="extended" /> </div>
<div id="sidebar">
<r:content part="sidebar" /> </div>
<r:snippet name="footer" />
</body>
</html>
<div class="entry">
<h3>First Post</h3>
<p>This is my very first post!</p>
<p><a href="/blog/first-post/">Read More...</a></p>
</div>
<div class="entry">
<h3>Second Post</h3>
<p>This is another post!</p>
<p><a href="/blog/first-post/">Read More...</a></p>
</div>
<r:children:each>
<div class="entry">
<h3>First Post</h3>
<p>This is my very first post!</p>
<p><a href="/blog/first-post/">Read More...</a></p>
</div>
</r:children:each>
<r:children:each>
<div class="entry">
<h3><r:title /></h3>
<p>This is my very first post!</p>
<p><a href="/blog/first-post/">Read More...</a></p>
</div>
</r:children:each>
<r:children:each>
<div class="entry">
<h3><r:title /></h3>
<p><r:content /></p>
<p><a href="/blog/first-post/">Read More...</a></p>
</div>
</r:children:each>
<r:children:each>
<div class="entry">
<h3><r:title /></h3>
<p><r:content /></p>
<p><r:link>Read More...</r:link></p>
</div>
</r:children:each>
<r:children:each>
<div class="entry">
<h3><r:title /></h3>
<p><r:content /></p>
<r:if_content part="extended">
<p><r:link>Read More...</r:link></p>
</r:if_content>
</div>
</r:children:each>
<r:children:each limit="5" order="desc">
<div class="entry">
<h3><r:title /></h3>
<p><r:content /></p>
<r:if_content part="extended">
<p><r:link>Read More...</r:link></p>
</r:if_content>
</div>
</r:children:each>
<h3><r:title /></h3>
<ul>
<r:children:each>
<li><r:title /></li>
</r:children:each>
</ul>
<h3>Articles</h3>
<ul>
<li>First Post</li>
<li>Second Post</li>
<li>Third Post</li>
</ul>
<r:children:first>
<r:title />
</r:children:first>
First Post
<r:children:last:title />
Last Post