Below is the file 'templates/haiku.html' from this revision. You can also download the file.
#extends base #def body #if $haiku_code == None <p align="center"> Sorry, something went wrong generating your Haiku. </p> #else <p align="center"> Your freshly generated Haiku is: </p> #filter Filter $haiku_code #filter WebSafe <p align="center"> Want to add this to your journal? Just copy the following code into your journal.<br /> Want another? Just <a href="javascript:window.location.reload();">reload</a>. </p> <p style='border-style: solid; width: 50%; position: relative; left: 25%; padding: 3px; border-width: 2; border-color: green;'> <small><small><code> $haiku_code </small></small></code> </p> #end if #end def