Readability

Just tried this:
Code:
            <xen:if is="{$xenOptions.readability}">
                    <div class="rdbWrapper" data-show-read="1" data-show-send-to-kindle="0" data-show-print="0" data-show-email="0" data-orientation="0" data-version="1"></div><script type="text/javascript">(function() {var s = document.getElementsByTagName("script")[0],rdb = document.createElement("script"); rdb.type = "text/javascript"; rdb.async = true; rdb.src = document.location.protocol + "//www.readability.com/embed.js"; s.parentNode.insertBefore(rdb, s); })();</script>
                </div>               
            </xen:if>

Looks like I'm not doing right. :p
Not a coder here.
 
Just add the code as it is directly before </xen:hook>.

You may have to add some additional styling though to place it exactly how you want.

For example, add this to EXTRA.css:

Code:
.rdbWrapper {
margin-top: 10px;
}

Edit that class to suit.
 
Top Bottom