Категория:Navboxes
Материал из openSUSE.
| Эта статья содержит фрагменты на иностранном языке . Вы можете помочь проекту, переведя её до конца. |
Navigation boxes, or navboxes, are wiki templates that one can use to provide rapid access to many pages that may be related to the same topic.
Wikipedia uses navboxes extensively; practically every major page in Wikipedia has a box at the bottom that links you to other related pages within the same topic. If you visit the page about bongo drums and scroll to the bottom, you will see the navbox for "Percussion instruments".
Navboxes let readers of the wiki navigate among related pages easily.
How to create a navbox
First, look at any of the existing navboxes at the bottom of this page to see how they are made. Most of them are just a table full of links with a topic-specific organization.
Start on a page to which you want to add the new navbox, and add this to the bottom (replace `YOURTOPIC` by the name of your topic):
{{YOURTOPIC Navbox}}
Once you save the page, you will be able to click on that link to actually create the navbox. You can use the following markup for the contents of the navbox. Replace `YOURTOPIC` by the name of your topic, and `YOURTOPIC_CATEGORY` by a suitable category if appropriate.
<noinclude>
<!-- Instructions that only get shown in the navbox page itself -->
'''To include this [[:Category:Navboxes|navbox]] (navigation box) in a page,
go to the bottom of the page and put this there:'''
<nowiki>{{YOURTOPIC Navbox}}</nowiki>
</noinclude>
<!-- Table for the actual navbox; this is what actually gets included
in every page where the navbox is used -->
{|border="1" cellpadding="5" cellspacing="0" align="center"
|-
! style="background:#c3db8f" colspan="2" align="center" | '''[[YOURTOPIC]]'''
|-
! width="45%" style="background:#d9e5bf" | Foo
! width="45%" style="background:#d9e5bf;" | Bar
|-
<!-- Foo -->
| valign="top" style="background:#efefef;" |
* [[Blah]]
* [[Blah blah]]
<!-- Bar -->
| valign="top" style="background:#efefef;" |
* [[Bleh]]
* [[Bleh bleh]]
|-
| style="background:#d9e5bf;" | '''Baz'''
| style="background:#d9e5bf;" | '''Beep'''
|-
<!-- Baz -->
| valign="top" style="background:#efefef;" |
* [[Blih]]
* [[Blih blih]]
<!-- Beep -->
| valign="top" style="background:#efefef;" |
* [[Bloh]]
* [[Bloh bloh]]
|}
[[Category:YOURTOPIC_CATEGORY]]
<noinclude>
<!-- Add the navbox to the Category:Navboxes page, so it is easy to find -->
[[Category:Navboxes]]
</noinclude>

