(←Created page with 'This is a standard navigation box to use at the bottom of articles to link them together. It is a restricted version of {{t1|Navbox generic}}, in which certain sty...') |
No edit summary |
||
Line 1: | Line 1: | ||
This | <includeonly>{{template doc page transcluded}}{{pp-template|small=yes}}{{intricate template}}</includeonly><noinclude>{{template doc page viewed directly}}</noinclude> | ||
<!-- EDIT TEMPLATE DOCUMENTATION BELOW THIS LINE --> | |||
This template allows a [[Wikipedia:Navigational templates|navigational template]] to be set up relatively quickly by supplying it one or more lists of links. It extends the {{t1|Navbox generic}} template by adding in default styles that should work for most navigational templates. It is not recommended that one modifies the default styles, but it is possible if one wishes to do so. For more advanced options, or the version of this template without the default options set, see {{t1|Navbox generic}}. | |||
== Blank template == | |||
<pre> | |||
{{Navbox | |||
|name = {{subst:PAGENAME}} | |||
|navbar = | |||
|state = | |||
|titlestyle = | |||
|title = | |||
|image = | |||
|groupstyle = | |||
|liststyle = | |||
|abovestyle = | |||
|above = | |||
|group1 = | |||
|list1 = | |||
|group2 = | |||
|list2 = | |||
... | |||
|group20 = | |||
|list20 = | |||
|belowstyle = | |||
|below = | |||
}} | |||
</pre> | |||
==Parameters== | |||
===Mandatory=== | |||
:; ''name'' | |||
:: The name of the template, which is needed for the "v{{·}} d{{·}} e" ("view{{·}} discuss{{·}} edit") links to work properly on all pages where the template is used. You can enter <code><nowiki>{{subst:PAGENAME}}</nowiki></code> for this value as a shortcut. | |||
:; ''title'' | |||
:: Text that appears centered in the top row of the table. It is usually the template's topic, i.e. a succinct description of the body contents. This should be a single line, but if a second line is needed, use <code><nowiki>{{-}}</nowiki></code> to ensure proper centering. | |||
:: The background color defaults to <code><span style="background:#ccf; color:black;">#ccf</span></code> (truncated form of <code><span style="background: #ccccff;">#ccccff</span></code>), but can be changed via the ''titlestyle'' parameter (see below). | |||
:; ''list<sub>n</sub>'' | |||
:: (i.e. ''list1'', ''list2'', etc.) The body of the template, usually a list of links. Format is inline, although the text can be entered on separate lines if the entire list is enclosed within <code><nowiki><div> </div></nowiki></code> (see [[#Example with code]]). At least one ''list'' parameter is required; each additional ''list'' is displayed in a separate row of the table. Each ''list<sub>n</sub>'' may be preceded by a corresponding ''group<sub>n</sub>'' parameter, if provided (see below). | |||
:: The background color of the list items (and the entire table) defaults to <code><span style="background:#f9f9f9; color:black;">#f9f9f9</span></code>, but can be changed via the ''bodystyle'', ''oddstyle'' and/or ''evenstyle'' parameters (see below). | |||
===Optional=== | |||
====Cells==== | |||
:; ''group<sub>n</sub>'' | |||
:: (i.e. ''group1'', ''group2'', etc.) If specified, text appears in a header cell displayed to the left of ''list<sub>n</sub>''. If omitted, ''list<sub>n</sub>'' uses the full width of the table. | |||
:: The background color defaults to <code><span style="background:#ddf; color:black;">#ddf</span></code> (truncated form of <code><span style="background: #ddddff;">#ddddff</span></code>), but can be changed via the ''groupstyle'' parameter (see below). | |||
:; ''image'' | |||
:: An image to be displayed in a cell below the title and to the right of the body (the groups/lists). For the image to display properly, the ''list1'' parameter must be specified. The ''image'' parameter accepts standard wikicode for displaying an image, i.e. | |||
::: <code><nowiki>[[Image:Example.jpg|100px]]</nowiki><code> | |||
:: In a template where the body (the groups and/or lists) does not extend all the way to the right side, the image will shift away from the right edge of the template. This can be avoided by using the ''right'' parameter within the image wikicode, i.e. | |||
::: <code><nowiki>[[Image:Example.jpg|80px|right]]</nowiki><code> | |||
:; ''above'' | |||
:: A full-width cell displayed between the titlebar and first group/list, i.e. ''above'' the template's body (groups, lists and image). In a template without an image, ''above'' behaves in the same way as the ''list1'' parameter without the ''group1'' parameter. | |||
:; ''below'' | |||
:: A full-width cell displayed ''below'' the template's body (groups, lists and image). In a template without an image, ''below'' behaves in the same way as the template's final ''list<sub>n</sub>'' parameter without a ''group<sub>n</sub>'' parameter. For an example of the ''below'' parameter in use, see {{tl|Lists of the provinces and territories of Canada}}. | |||
====Styles==== | |||
:; ''titlestyle'' | |||
:: [[Cascading Style Sheets|CSS]] styles to apply to ''title'', most often the titlebar's background color: | |||
::: <code><nowiki>titlestyle = background:</nowiki>''#nnnnnn'';</code> | |||
::: <code><nowiki>titlestyle = background:</nowiki>''name'';</code> | |||
:; ''bodystyle'' {{nobold|or}} ''style'' | |||
:: Specifies [[Cascading Style Sheets|CSS]] styles to apply to the template body. The shorter name ''style'' may be used when no other style parameters are specified. This option should be used sparingly as it can lead to visual inconsistencies. Examples: | |||
::: <code>background:#''nnnnnn'';</code> | |||
::: <code>text-align:[''right/center/left/justified''];</code> | |||
::: <code>width:''N'' [em/%/px or width:auto];</code> | |||
::: <code>float:[''left/right/none''];</code> | |||
::: <code>clear:[''right/left/both/none''];</code> | |||
:; ''groupstyle'' | |||
:: CSS styles to apply to the ''groupN'' cells. This option overrides any styles that are applied to the entire table. Examples: | |||
::: <code>background:#''nnnnnn'';</code> | |||
::: <code>text-align:[''left/center/right''];</code> | |||
::: <code>vertical-align:[''top/middle/bottom''];</code> | |||
::: <code>white-space:nowrap;</code> | |||
:; ''liststyle'' | |||
:: CSS styles to apply to all lists. Overruled by the ''oddstyle'' and ''evenstyle'' parameters (if specified) below. | |||
:; ''oddstyle'' | |||
:; ''evenstyle'' | |||
:: Not allowed. Use {{t1|Navbox generic}} if you wish to apply a different set of styles to even/odd rows. It currently defaults to color #eee for even, and the default background color for odd. | |||
:; ''abovestyle'' | |||
:; ''belowstyle'' | |||
:: CSS styles to apply to the top cell (specified via the ''above'' parameter) and bottom cell (specified via the ''below'' parameter). Typically used to set background color or text alignment: | |||
::: <code>background:#''nnnnnn'';</code> | |||
::: <code>text-align:[''left/center/right''];</code> | |||
====Other==== | |||
:; ''state'' | |||
:: Defaults to <code>autocollapse</code>. If set to <code>collapsed</code>, the navbox will always start out in a collapsed state. If set to blank or anything other than <code>autocollapse</code> or <code>collapsed</code>, the navbox will always start out in an expanded state. A navbox with <code>autocollapse</code> will start out collapsed if there are two or more tables on the same page that use <tt>collapsible</tt>. For the technically minded, see [[MediaWiki:Common.js]]. | |||
:: Often times, editors will want a default initial state for a nav box, which may be overridden in an article. Here is the trick to do this: | |||
::In your intermediate template, create a parameter also named "state" as a pass-through like this | |||
::<tt><nowiki>| state = {{{state<includeonly>|your_desired_initial_state</includeonly>}}}</nowiki></tt> | |||
::Example: {{tl|peso}} with autocollapse as the default initial state. [[Bolivian peso]] transcludes it and has only one nav box. So the peso nav box shows. [[Chilean peso]] has two nav boxes. So the peso nav box collapses. | |||
::Example: {{tl|Historical currencies of Hungary}} with expanded as the default initial state. All transcluding articles shows the content by default, unless there were an hypothetical article that specifies state = collapsed when transcluding. | |||
::The <nowiki><includeonly>|</nowiki> will make the template expanded when viewing the template page by itself. | |||
:; ''navbar'' | |||
:: Defaults to <code>Tnavbar</code>. If set to <code>plain</code>, the {{Tnavbar|Navbox generic|mini=1}} links on the left side of the titlebar will not be displayed. | |||
== Layout of table == | |||
{| border="1" class="navbox collapsible" style="margin:auto;" | |||
|+ <div style="text-align:left;">Table generated by {{tl|Navbox generic}} '''without''' ''image'', ''above'' and ''below'' parameters (borders added for illustration only):</div> | |||
!colspan="2"| <div style="float:left; text-align:left; width:6em;">{{Tnavbar|Navbox generic|mini=1}}</div><nowiki>{{{title}}}</nowiki> | |||
|- | |||
!width="17%"| <nowiki>{{{group1}}}</nowiki> | |||
| <nowiki>{{{list1}}}</nowiki> | |||
|- | |||
! <nowiki>{{{group2}}}</nowiki> | |||
| <nowiki>{{{list2}}}</nowiki> | |||
|- | |||
|colspan="2"| <nowiki>{{{list3}}} without {{{group3}}}</nowiki> | |||
|} | |||
{| border="1" class="navbox collapsible" style="margin:auto;" | |||
|+ <div style="text-align:left;"><br>Table generated by {{tl|Navbox generic}} '''with''' ''image'', ''above'' and ''below'' parameters (borders added for illustration only):</div> | |||
!colspan="3"| <div style="float:left; text-align:left; width:6em;">{{Tnavbar|Navbox generic|mini=1}}</div><nowiki>{{{title}}}</nowiki> | |||
|- | |||
|colspan="3"| <nowiki>{{{above}}}</nowiki> | |||
|- | |||
!width="17%"| <nowiki>{{{group1}}}</nowiki> | |||
| <nowiki>{{{list1}}}</nowiki> | |||
|width="17%" rowspan="3"| <nowiki>{{{image}}}</nowiki> | |||
|- | |||
! <nowiki>{{{group2}}}</nowiki> | |||
| <nowiki>{{{list2}}}</nowiki> | |||
|- | |||
|colspan="2"| <nowiki>{{{list3}}} without {{{group3}}}</nowiki> | |||
|- | |||
|colspan="3"| <nowiki>{{{below}}}</nowiki> | |||
|} | |||
== Example with code == | |||
{| style="background:transparent; font-size:90%;" | |||
| | |||
<pre> | |||
{{Navbox | |||
|name = {{subst:PAGENAME}} | |||
|state = {{{state|uncollapsed}}} | |||
|title = [[Wikipedia:Navigational templates|Navigational templates]] | |||
|bodystyle = width:50%; | |||
|group1 = Physics | |||
|list1 = [[Template:Cosmology|Cosmology]]{{·}} [[Template:General relativity|Relativity]]{{·}} | |||
[[Template:String-theory|String theory]] | |||
|group2 = Continents | |||
|list2 = <div> | |||
[[Template:Africafooter|Africa]]{{·}} | |||
[[Template:Asiafooter|Asia]]{{·}} | |||
[[Template:Europefooter|Europe]] | |||
</div> | |||
|list3 = [[Template:National parks of Argentina|Argentinian National Parks]] | |||
}} | |||
</pre> | |||
|} | |||
{{Navbox | |||
|name = Navbox/doc | |||
|state = {{{state|uncollapsed}}} | |||
|title = [[Wikipedia:Navigational templates|Navigational templates]] | |||
|bodystyle = width:50%; | |||
|group1 = Physics | |||
|list1 = [[Template:Cosmology|Cosmology]]{{·}} [[Template:General relativity|Relativity]]{{·}} [[Template:String-theory|String theory]] | |||
|group2 = Continents | |||
|list2 = <div> | |||
[[Template:Africafooter|Africa]]{{·}} | |||
[[Template:Asiafooter|Asia]]{{·}} | |||
[[Template:Europefooter|Europe]] | |||
</div> | |||
|list3 = [[Template:National parks of Argentina|Argentinian National Parks]] | |||
}} | |||
== Additional examples == | |||
===No image=== | |||
{{Navbox | |||
|name = Navbox/doc | |||
|state = uncollapsed | |||
|title = [[Multimedia Super Corridor|MSC (Multimedia Super Corridor) Malaysia]]{{-}}''without image'' | |||
|group1 = Centre | |||
|list1 = [[Cyberjaya]] | |||
|group2 = Area | |||
|list2 = [[Klang Valley]] | |||
|group3 = Major landmarks | |||
|list3 = [[Petronas Twin Towers]]{{·}} [[Kuala Lumpur Tower]]{{·}} [[Kuala Lumpur Sentral]]{{·}} [[Technology Park Malaysia]]{{·}} [[Putrajaya]]{{·}} [[Cyberjaya]]{{·}} {{nowrap|[[Kuala Lumpur International Airport]]}} | |||
|group4 = Infrastructure | |||
|list4 = [[Express Rail Link]]{{·}} [[KL-KLIA Dedicated Expressway]] | |||
|group5 = Prime applications | |||
|list5 = [[EGovernment]]{{·}} [[MyKad]] | |||
}} | |||
===With image=== | |||
{{Navbox | |||
|name = Navbox/doc | |||
|state = uncollapsed | |||
|title = [[Multimedia Super Corridor|MSC (Multimedia Super Corridor) Malaysia]] | |||
|image = [[Image:Flag of Malaysia.svg|120px]] | |||
|bodystyle = | |||
|groupstyle = | |||
|group1 = Centre | |||
|list1 = [[Cyberjaya]] | |||
|group2 = Area | |||
|list2 = [[Klang Valley]] | |||
|group3 = Major landmarks | |||
|list3 = [[Petronas Twin Towers]]{{·}} [[Kuala Lumpur Tower]]{{·}} [[Kuala Lumpur Sentral]]{{·}} [[Technology Park Malaysia]]{{·}} [[Putrajaya]]{{·}} [[Cyberjaya]]{{·}} [[Kuala Lumpur International Airport]] | |||
|group4 = Infrastructure | |||
|list4 = [[Express Rail Link]]{{·}} [[KL-KLIA Dedicated Expressway]] | |||
|group5 = Prime applications | |||
|list5 = [[EGovernment]]{{·}} [[MyKad]] | |||
|belowstyle = | |||
|below = Website: [http://www.msc.com.my/ www.msc.com.my] | |||
}} | |||
== See also == | |||
{{Navigational templates}} | |||
<includeonly> | |||
<!--Categories--> | |||
[[Category:Navigational templates| ]] | |||
[[Category:Wikipedia metatemplates|{{PAGENAME}}]] | |||
[[Category:Templates using ParserFunctions|{{PAGENAME}}]] | |||
<!--Other languages--> | |||
</includeonly> |
Revision as of 11:30, 11 August 2007
Template:Template doc page viewed directly This template allows a navigational template to be set up relatively quickly by supplying it one or more lists of links. It extends the Template:T1 template by adding in default styles that should work for most navigational templates. It is not recommended that one modifies the default styles, but it is possible if one wishes to do so. For more advanced options, or the version of this template without the default options set, see Template:T1.
Blank template
{{Navbox |name = {{subst:PAGENAME}} |navbar = |state = |titlestyle = |title = |image = |groupstyle = |liststyle = |abovestyle = |above = |group1 = |list1 = |group2 = |list2 = ... |group20 = |list20 = |belowstyle = |below = }}
Parameters
Mandatory
- name
- The name of the template, which is needed for the "vTemplate:· dTemplate:· e" ("viewTemplate:· discussTemplate:· edit") links to work properly on all pages where the template is used. You can enter
{{subst:PAGENAME}}
for this value as a shortcut.
- title
- Text that appears centered in the top row of the table. It is usually the template's topic, i.e. a succinct description of the body contents. This should be a single line, but if a second line is needed, use
{{-}}
to ensure proper centering. - The background color defaults to
#ccf
(truncated form of#ccccff
), but can be changed via the titlestyle parameter (see below).
- listn
- (i.e. list1, list2, etc.) The body of the template, usually a list of links. Format is inline, although the text can be entered on separate lines if the entire list is enclosed within
<div> </div>
(see #Example with code). At least one list parameter is required; each additional list is displayed in a separate row of the table. Each listn may be preceded by a corresponding groupn parameter, if provided (see below). - The background color of the list items (and the entire table) defaults to
#f9f9f9
, but can be changed via the bodystyle, oddstyle and/or evenstyle parameters (see below).
Optional
Cells
- groupn
- (i.e. group1, group2, etc.) If specified, text appears in a header cell displayed to the left of listn. If omitted, listn uses the full width of the table.
- The background color defaults to
#ddf
(truncated form of#ddddff
), but can be changed via the groupstyle parameter (see below).
- image
- An image to be displayed in a cell below the title and to the right of the body (the groups/lists). For the image to display properly, the list1 parameter must be specified. The image parameter accepts standard wikicode for displaying an image, i.e.
[[Image:Example.jpg|100px]]
- In a template where the body (the groups and/or lists) does not extend all the way to the right side, the image will shift away from the right edge of the template. This can be avoided by using the right parameter within the image wikicode, i.e.
[[Image:Example.jpg|80px|right]]
- above
- A full-width cell displayed between the titlebar and first group/list, i.e. above the template's body (groups, lists and image). In a template without an image, above behaves in the same way as the list1 parameter without the group1 parameter.
- below
- A full-width cell displayed below the template's body (groups, lists and image). In a template without an image, below behaves in the same way as the template's final listn parameter without a groupn parameter. For an example of the below parameter in use, see Template:Tl.
Styles
- titlestyle
- CSS styles to apply to title, most often the titlebar's background color:
titlestyle = background:#nnnnnn;
titlestyle = background:name;
- bodystyle Template:Nobold style
- Specifies CSS styles to apply to the template body. The shorter name style may be used when no other style parameters are specified. This option should be used sparingly as it can lead to visual inconsistencies. Examples:
background:#nnnnnn;
text-align:[right/center/left/justified];
width:N [em/%/px or width:auto];
float:[left/right/none];
clear:[right/left/both/none];
- groupstyle
- CSS styles to apply to the groupN cells. This option overrides any styles that are applied to the entire table. Examples:
background:#nnnnnn;
text-align:[left/center/right];
vertical-align:[top/middle/bottom];
white-space:nowrap;
- liststyle
- CSS styles to apply to all lists. Overruled by the oddstyle and evenstyle parameters (if specified) below.
- oddstyle
- evenstyle
- Not allowed. Use Template:T1 if you wish to apply a different set of styles to even/odd rows. It currently defaults to color #eee for even, and the default background color for odd.
- abovestyle
- belowstyle
- CSS styles to apply to the top cell (specified via the above parameter) and bottom cell (specified via the below parameter). Typically used to set background color or text alignment:
background:#nnnnnn;
text-align:[left/center/right];
Other
- state
- Defaults to
autocollapse
. If set to collapsed
, the navbox will always start out in a collapsed state. If set to blank or anything other than autocollapse
or collapsed
, the navbox will always start out in an expanded state. A navbox with autocollapse
will start out collapsed if there are two or more tables on the same page that use collapsible. For the technically minded, see MediaWiki:Common.js.
- Often times, editors will want a default initial state for a nav box, which may be overridden in an article. Here is the trick to do this:
- In your intermediate template, create a parameter also named "state" as a pass-through like this
- | state = {{{state<includeonly>|your_desired_initial_state</includeonly>}}}
- Example: Template:Tl with autocollapse as the default initial state. Bolivian peso transcludes it and has only one nav box. So the peso nav box shows. Chilean peso has two nav boxes. So the peso nav box collapses.
- Example: Template:Tl with expanded as the default initial state. All transcluding articles shows the content by default, unless there were an hypothetical article that specifies state = collapsed when transcluding.
- The <includeonly>| will make the template expanded when viewing the template page by itself.
- navbar
- Defaults to
Tnavbar
. If set to plain
, the Template:Tnavbar links on the left side of the titlebar will not be displayed.
Layout of table
Table generated by Template:Tl without image, above and below parameters (borders added for illustration only):
{{{title}}}
{{{group1}}}
{{{list1}}}
{{{group2}}}
{{{list2}}}
{{{list3}}} without {{{group3}}}
Table generated by Template:Tl with image, above and below parameters (borders added for illustration only):
{{{title}}}
{{{above}}}
{{{group1}}}
{{{list1}}}
{{{image}}}
{{{group2}}}
{{{list2}}}
{{{list3}}} without {{{group3}}}
{{{below}}}
Example with code
{{Navbox
|name = {{subst:PAGENAME}}
|state = {{{state|uncollapsed}}}
|title = [[Wikipedia:Navigational templates|Navigational templates]]
|bodystyle = width:50%;
|group1 = Physics
|list1 = [[Template:Cosmology|Cosmology]]{{·}} [[Template:General relativity|Relativity]]{{·}}
[[Template:String-theory|String theory]]
|group2 = Continents
|list2 = <div>
[[Template:Africafooter|Africa]]{{·}}
[[Template:Asiafooter|Asia]]{{·}}
[[Template:Europefooter|Europe]]
</div>
|list3 = [[Template:National parks of Argentina|Argentinian National Parks]]
}}
Navbox/doc
Physics
CosmologyTemplate:· RelativityTemplate:· String theory
Continents
Additional examples
No image
Navbox/doc
Centre
Cyberjaya
Area
Klang Valley
Major landmarks
Petronas Twin TowersTemplate:· Kuala Lumpur TowerTemplate:· Kuala Lumpur SentralTemplate:· Technology Park MalaysiaTemplate:· PutrajayaTemplate:· CyberjayaTemplate:· Template:Nowrap
Infrastructure
Express Rail LinkTemplate:· KL-KLIA Dedicated Expressway
Prime applications
EGovernmentTemplate:· MyKad
With image
Navbox/doc
Centre
Cyberjaya
Area
Klang Valley
Major landmarks
Petronas Twin TowersTemplate:· Kuala Lumpur TowerTemplate:· Kuala Lumpur SentralTemplate:· Technology Park MalaysiaTemplate:· PutrajayaTemplate:· CyberjayaTemplate:· Kuala Lumpur International Airport
Infrastructure
Express Rail LinkTemplate:· KL-KLIA Dedicated Expressway
Prime applications
EGovernmentTemplate:· MyKad
See also
Template:Navigational templates