Typecraft v2.5
Jump to: navigation, search

Difference between revisions of "Template:Infobox"

(including a link here is no better than explaining it here - it still encourages new users to use conditionals - when they should be discouraged from using them)
(rvt - sigh)
Line 41: Line 41:
 
==See also==
 
==See also==
 
*[[Wikipedia:Infobox]]
 
*[[Wikipedia:Infobox]]
 +
*[[Template:Infobox Conditionals]] - advanced techniques that can be used to hide unused fields.
  
 
[[Category:infobox templates|{{PAGENAME}}]]
 
[[Category:infobox templates|{{PAGENAME}}]]

Revision as of 08:02, 6 February 2006

{{{name}}}
[[Image:{{{image}}}|200px| ]]
{{{caption}}}
Data 1: {{{data1}}}
Data 2: this text displayed if data2 not defined
Data 3 (data hidden if data3 empty or not defined):


Usage

Copy this code

{| class="infobox bordered" style="width: 25em; text-align: left; font-size: 95%;"
|+ style="font-size: larger;" | '''{{{name}}}'''
|-
| colspan="2" style="text-align:center;" | [[Image:{{{image}}}|300px| ]]<br>{{{caption}}}
|- 
! Data 1:
| {{{data1}}}
|- 
! Data 2:
| {{{data2|''this text displayed if data2 not defined''}}}
|- 
! Data 3 (data hidden if data3 empty or not defined):
| {{{data3|}}}
|- 
| colspan="2" style="font-size: smaller;" | {{{footnotes|}}}
|}

See also