Contents
This MediaWiki page will contain what appears in template footer:
<div class="row"> <div class="span6"> === Stuff === * [[Link to some place]] * [[Another link]] </div> <div class="span6"> === More Stuff === * [http://external.resource.org Go here] </div> </div>
Bootstrap:TitleBar
This MediaWiki page will control the links that appear in the Bootstrap navbar after the logo/site title. The format that this page is expecting is as follows:
* Menu Item Title ** [[Page 1]] ** [[Page 2]] ** [[Page 3]] * Another Menu ** [[Whee]] ** [[OMG hai]] * [[A Link Menu]]
This MediaWiki page will control the links that appear in the main navigation gray bar. The format that this page is expecting is as follows:
* Menu Item Title ** [[Page 1]] ** [[Page 2]] ** [[Page 3]] * Another Menu ** [[Whee]] ** [[OMG hai]] * [[A Link Menu]]
Template:Alert
This template is used to leverage Bootstrap's alert box:
<div class="alert {{{2}}}"><strong>Heads Up!</strong> {{{1}}}</div>
Usage:
{{alert|Message you want to say|alert-danger}}
Template:Tip
This template is used to do Bootstrap tooltips!
<span title="{{{2}}}" class="tip" rel="tooltip">{{{1}}}</span>
Usage:
{{tip|Something|This is the tooltip!}}
or
{{tip|[[Bacon]]|Delicious snack}}
Template:Pop
This template is used to do Bootstrap popovers!
<span data-original-title="{{{2}}}" data-content="{{{3}}}" class="pop">{{{1}}}</span>
Usage:
{{pop|Whatever triggers the popover|Popover Title|Popover Content}}