Hi Erando,
I think this might help you
http://documentation.magnolia-cms.com/reference/tag-libraries.html
as to the examples
For ftl
[code]
[#if content.image?has_content]
Image: <img src="${cmsfn.link(content.image)}" />
[#else]
Image: No image uploaded yet.
[/#if]
[/code]
For jsp
[code]<c:choose>
<c:when test="${not empty content.image}">
Image: <img src="${cmsfn:link(content.image)}" />
</c:when>
<c:otherwise>
Image: No image uploaded yet.
</c:otherwise>
</c:choose>[/code]
HTH,
Federico
--
Context is everything:
http://forum.magnolia-cms.com/forum/thread.html?threadId=2b969df8-d962-45e4-a2fd-ebae14ba2fa7
----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------