Template:NavBar: Difference between revisions
Jump to navigation
Jump to search
Navigation bar
THIS TEMPLATE SHOULD NOT BE EDITED UNLESS ABSOLUTELY NESSESARY
Navigation bar
Navigation bar
mNo edit summary |
m (Slight color tweak) |
||
Line 5: | Line 5: | ||
<div style="display: flex"> | <div style="display: flex"> | ||
<!-- Cell 1 start --> | <!-- Cell 1 start --> | ||
<div style="padding: .5em; background: {{{color|#444444}}} | <div style="padding: .5em; background: {{{color|#444444}}}3e; width: 20%; color: #FFF; font-size: 105%; border-radius: {{#if:{{{tabs|}}}|0 0 0 0;| 0 0 0 1em;}}"> | ||
<center>''' {{{MainpageLink|[[Main Page|Return to Main page]]}}}'''</center> | <center>''' {{{MainpageLink|[[Main Page|Return to Main page]]}}}'''</center> | ||
</div> | </div> | ||
<!-- Cell 1 end --> | <!-- Cell 1 end --> | ||
<!-- Cell 2 start --> | <!-- Cell 2 start --> | ||
<div style="padding: .5em; background: {{{color|#444444}}} | <div style="padding: .5em; background: {{{color|#444444}}}3e; width: 20%; color: #FFF; font-size: 105%"> | ||
<center>'''[[Policy portal]]'''</center> | <center>'''[[Policy portal]]'''</center> | ||
</div> | </div> | ||
<!-- Cell 2 end --> | <!-- Cell 2 end --> | ||
<!-- Cell 3 start --> | <!-- Cell 3 start --> | ||
<div style="padding: .5em; background: {{{color|#444444}}} | <div style="padding: .5em; background: {{{color|#444444}}}3e; width: 20%; color: #FFF; font-size: 105%"> | ||
<center>'''[[Jobs portal]]'''</center> | <center>'''[[Jobs portal]]'''</center> | ||
</div> | </div> | ||
<!-- Cell 3 end --> | <!-- Cell 3 end --> | ||
<!-- Cell 4 start --> | <!-- Cell 4 start --> | ||
<div style="padding: .5em; background: {{{color|#444444}}} | <div style="padding: .5em; background: {{{color|#444444}}}3e; width: 20%; color: #FFF; font-size: 105%"> | ||
<center>'''[[Guides portal]]'''</center> | <center>'''[[Guides portal]]'''</center> | ||
</div> | </div> | ||
<!-- Cell 4 end --> | <!-- Cell 4 end --> | ||
<!-- Cell 5 start --> | <!-- Cell 5 start --> | ||
<div style="padding: .5em; background: {{{color|#444444}}} | <div style="padding: .5em; background: {{{color|#444444}}}3e; width: 20%; color: #FFF; font-size: 105%; border-radius: {{#if:{{{tabs|}}}|0 0 0 0;| 0 0 1em 0;}}"> | ||
<center>'''[[Lore portal]]'''</center> | <center>'''[[Lore portal]]'''</center> | ||
</div> | </div> |
Revision as of 14:12, 16 March 2023
How to use this template
This template has several parameters and all of them will be displayed in the example below.
color
Controls the color in this template.MainpageLink
Controls the main page link. This should either be:[[Main Page]]
or[[Main Page|Return to Main page]]
.tabs
Controls the lower open box on this template, input for this is left open but should be used to create buttons to link to different parts of the wiki. See the examples for how to do this.
Use case examples
{{Template:NavBar | color = #005C53 | tabs = PLACEHOLDER! }} These parameters will result in the following:
PLACEHOLDER!
A slightly more advanced example
{{Template:NavBar | color = #005C53 | tabs = <div style="display:flex;"> <div style="background: #2A96339e; width: 33.3%; border-radius: 0 0 0 1em;">TEST BUTTON 1</div> <div style="background: #BA56569e; width: 33.3%; border-radius: 0 0 0 0;">TEST BUTTON 2</div> <div style="background: #127BB79e; width: 33.4%; border-radius: 0 0 1em 0;">TEST BUTTON 3</div> </div> }} These parameters will result in the following:
TEST BUTTON 1
TEST BUTTON 2
TEST BUTTON 3