Web Oriented Object Framework

User Guide (Version 0.5b4)

Woof!
User Guide (Version 0.5b4)

Pure CSS images

Pure CSS images are styled so as to fit the image within the containing section. The image link is created with the woof::pure::img command which takes the image url as an argument. For example,

<div style='max-width:30px;background-color:grey;'>
[my include_image logo.png alt "Woof logo"]
</div>
Woof logo

shows the full Woof! logo overflowing the containing div while

<div style='max-width:30px;background-color:grey;'>
[woof::pure::img [my url_for_image logo.png] "Woof logo"]
</div>
Woof logo

shrinks it to fit.