nicubizz
nicubizz

Reputation: 11

Get small image url to ADT Liferay 7

I am using Liferay 7 as my content management system and freemarker as my template language.

How to get a small image url and also custom fields of my journal article?

I want to use those values in my ADT to render the articles in a custom way.

Upvotes: 0

Views: 1519

Answers (1)

Karthik Tsaliki
Karthik Tsaliki

Reputation: 196

I got like this

First get the renderer from your current entry

<#assign renderer=curEntry.getAssetRenderer()>

Then get Journal Article from the renderer

<#assign article=renderer.getArticle()>

You can get all the custom fields from article variable

eg: for small image url

${article.getSmallImageURL()}

Upvotes: 1

Related Questions