Template generation - Output key?

Any trouble you encounter with the Pedias, here's the place to ask for help.
Post Reply
albummi
Inductee
Inductee
Posts: 1
Joined: Mon Sep 27, 2010 12:33 pm

Template generation - Output key?

Post by albummi »

Hey folks,

i want to create a Template for web Output, but i've got a problem.

How can i output the FSK / USK and Link in Detail View?

I've tried

USK: [key:usk]
Links: [key:url]

But nothing works, what's to enter there?
User avatar
Conor
Top Dog
Posts: 5346
Joined: Sat Jul 03, 2004 12:58 pm
Contact:

Re: Template generation - Output key?

Post by Conor »

The USK rating is named with the generic rated keyword.

Code: Select all

[key:rated]
The template for links is a bit more complex, as there can be more than one.

Code: Select all

[linksBegin][link:url]<br />[linksEnd]
The more complex version would be:

Code: Select all

<!--IFlinks
<div class="links">
<ul>
[linksBegin]<li><a href="[link:url]">[link:name]</a></li>
[linksEnd]
</ul>
</div>
ENDlinks-->
Post Reply