Template:Infobox/doc: Difference between revisions
(Created page with "{{Doc/start}} An infobox for use on pages. This is just an basic infobox ==Usage== <pre> {{Infobox | title = | image = | param1 = | param2 = | param3 = | param4 = | param5 = }} </pre> ===Parameters=== {| class="wikitable" ! Parameter !! Data Type !! Default Value !! Description |- | name || String || <nowiki>{{PAGENAME}}</nowiki> || The title |- | image || String || <nowiki>{{{name}}}.png or {{PAGENAME}}.png</nowiki> || The image to be used, without the File: p...") Â |
(Updated the doc for the new wikipedia infobox code) |
||
Line 2: | Line 2: | ||
An infobox for use on pages. This is just an basic infobox | An infobox for use on pages. This is just an basic infobox | ||
==Usage== | == 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 == | |||
{{Infobox  | {| class="wikitable" width="100%" | ||
| | ! Code | ||
| | ! Output | ||
| | |- | ||
| | | <pre> | ||
| | {{Infobox|title=TITLE | ||
| | |above=ABOVE | ||
| | |subheader=SUBHEADER | ||
|image=[[Image:thor.png|192px]] | |||
|caption=IMAGE_CAPTION | |||
|header1=HEADER_1 | |||
|label1=LABEL_1 | |||
|data1=DATA_1 | |||
}} | }} | ||
</pre> | </pre> | ||
| {{Infobox|title=TITLE | |||
|above=ABOVE | |||
|subheader=SUBHEADER | |||
|image=[[Image:thor.png|192px]] | |||
|caption=IMAGE_CAPTION | |||
|header1=HEADER_1 | |||
|label1=LABEL_1 | |||
|data1=DATA_1 | |||
}} | |||
|} | |||
{{Doc/end}} | {{Doc/end}} |
Revision as of 22:18, 27 November 2023
An infobox for use on pages. This is just an basic infobox
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
Code | Output |
---|---|
{{Infobox|title=TITLE |above=ABOVE |subheader=SUBHEADER |image=[[Image:thor.png|192px]] |caption=IMAGE_CAPTION |header1=HEADER_1 |label1=LABEL_1 |data1=DATA_1 }} |