Template:Infobox: Difference between revisions

From Horizon's End Wiki
No edit summary
No edit summary
 
(30 intermediate revisions by 14 users not shown)
Line 1: Line 1:
{{!}} class="infobox {{{bodyclass|}}}" cellspacing="5" style="width: 22em; text-align: left; font-size: 88%; line-height: 1.5em; {{{bodystyle|}}}"<!--
{{{!}} class="infobox {{{bodyclass|}}}" cellspacing="5" style="width: 30em; text-align: left; font-size: 88%; line-height: 1.5em; {{{bodystyle|}}}"<!--
  Caption
  Caption
-->{{#if:{{{title|}}}|<nowiki/>
-->{{#if:{{{title|}}}|<nowiki/>
{{!}}+  
{{!}}+  
{{!}}class="{{{titleclass|}}}" style="font-size: 125%; font-weight: bold; {{{titlestyle|}}}"{{!}}{{{title}}} }}<!--
{{!}}colspan="2" class="{{{titleclass|}}}" style="text-align:center; font-size: 125%; font-weight: bold; {{{titlestyle|}}}"{{!}}{{{title}}} }}<!--
  Header
  Header
-->{{#if:{{{above|}}}|<nowiki/>
-->{{#if:{{{above|}}}|<nowiki/>
Line 17: Line 17:
{{!}}colspan="2" class="{{{imageclass|}}}" style="text-align:center; {{{imagestyle|}}}"{{!}} {{{image}}} {{#if:{{{caption|}}}|<br />
{{!}}colspan="2" class="{{{imageclass|}}}" style="text-align:center; {{{imagestyle|}}}"{{!}} {{{image}}} {{#if:{{{caption|}}}|<br />
<span style="{{{captionstyle|}}}">{{{caption}}}</span> }} }}<!--
<span style="{{{captionstyle|}}}">{{{caption}}}</span> }} }}<!--
Image2
-->{{#if:{{{image2|}}}|<nowiki/>
{{!}}-
{{!}}colspan="2" class="{{{imageclass|}}}" style="text-align:center; {{{imagestyle|}}}"{{!}} {{{image2}}} {{#if:{{{caption2|}}}|<br />
<span style="{{{captionstyle|}}}">{{{caption2}}}</span> }} }}<!--
Image3
-->{{#if:{{{image3|}}}|<nowiki/>
{{!}}-
{{!}}colspan="2" class="{{{imageclass|}}}" style="text-align:center; {{{imagestyle|}}}"{{!}} {{{image3}}} {{#if:{{{caption3|}}}|<br />
<span style="{{{captionstyle|}}}">{{{caption3}}}</span> }} }}<!--
  Row 1
  Row 1
-->{{#if:{{{header1|}}}|<nowiki/>
-->{{#if:{{{header1|}}}|<nowiki/>
Line 825: Line 835:
{{!}}-
{{!}}-
{{!}}style="text-align:right;" colspan=2"{{!}}{{Tnavbar|{{{name}}}|noedit={{{noedit|0}}}}} }}
{{!}}style="text-align:right;" colspan=2"{{!}}{{Tnavbar|{{{name}}}|noedit={{{noedit|0}}}}} }}
{{!}}}
{{!}}}<noinclude>
== Usage ==
=== Parameters ===
There are some general 'styling' parameters, some 'title' and subtitle parameters, some 'image' parameters', and then parameters for each of the 80 possible 'rows'
==== Style ====
* bodyclass
* bodystyle
 
==== Title ====
* title
* titleclass
* titlestyle
* above
* aboveclass
* abovestyle
* subheader
* subheaderclass
* subheaderstyle
 
==== Image ====
* image
* imageclass
* imagestyle
* caption
* captionstyle
 
==== Rows ====
===== For all rows =====
* headerstyle
* labelstyle
* datastyle
 
===== For specific rows =====
For each of the 80 possible rows, replace the 'N' below with the number (e.g. 'header3', 'header80')
* headerN
* labelN
* dataN
* classN
 
== Example ==
{| class="wikitable" width="100%"
! Code
! Output
|-
| <code><pre>
{{Wikipedia:WikiProject_Transwiki/Template:Infobox|title=TITLE
|above=ABOVE
|subheader=SUBHEADER
|image=[[Image:Example.jpg]]
|caption=IMAGE_CAPTION
|header1=HEADER_1
|label1=LABEL_1
|data1=DATA_1
}}
</pre></code>
| {{Wikipedia:WikiProject_Transwiki/Template:Infobox|title=TITLE
|above=ABOVE
|subheader=SUBHEADER
|image=[[Image:Example.jpg]]
|caption=IMAGE_CAPTION
|header1=HEADER_1
|label1=LABEL_1
|data1=DATA_1
}}
|}</noinclude>

Latest revision as of 12:00, 24 December 2024

Usage[edit source]

Parameters[edit source]

There are some general 'styling' parameters, some 'title' and subtitle parameters, some 'image' parameters', and then parameters for each of the 80 possible 'rows'

Style[edit source]

  • bodyclass
  • bodystyle

Title[edit source]

  • title
  • titleclass
  • titlestyle
  • above
  • aboveclass
  • abovestyle
  • subheader
  • subheaderclass
  • subheaderstyle

Image[edit source]

  • image
  • imageclass
  • imagestyle
  • caption
  • captionstyle

Rows[edit source]

For all rows[edit source]
  • headerstyle
  • labelstyle
  • datastyle
For specific rows[edit source]

For each of the 80 possible rows, replace the 'N' below with the number (e.g. 'header3', 'header80')

  • headerN
  • labelN
  • dataN
  • classN

Example[edit source]

Code Output
{{Wikipedia:WikiProject_Transwiki/Template:Infobox|title=TITLE
|above=ABOVE
|subheader=SUBHEADER
|image=[[Image:Example.jpg]]
|caption=IMAGE_CAPTION
|header1=HEADER_1
|label1=LABEL_1
|data1=DATA_1
}}
title=TITLE above=ABOVE subheader=SUBHEADER image=File:Example.jpg caption=IMAGE_CAPTION header1=HEADER_1 label1=LABEL_1 data1=DATA_1

}}