Tip: How to minify your code
As the actual file size of the html-layer becomes more and more important, you've probably looked for ways to minify your code somehow. Good news - by combining a few functions in RPL its actually possible.
The solution is to combine <#join> and <#compress> - so wrap your html document like this:
<#compress>
<#join>
<html>...</html>
</#join>
</#compress>
Voila!
A different approach to this - and one I'd recommend is to create a minify macro like this and store it in a separate document content library:
<#macro minify>
<#if MINIFY = "ON">
<#compress>
<#join>
<#nested>
</#join>
</#compress>
<#else>
<#nested>
</#if>
</#macro>
1