Bootstrap Wrapper plugin
Bootstrap Wrapper page • Developer's documentation site
This adds many different bootstrap graphical page elements to the Bootstrap3 template. Not all have been used in this wiki, but here are some examples of those that have been used.
Buttons
These are the most prevalent, with examples found on nearly every page in the Works section, such as Kingdom of Kaldor. Most are of the default
type.
Sample code | Output |
---|---|
<button icon="fa fa-file-pdf-o">[[https://www.lythia.com/harnworld/places/kaldoran-hundreds/| get pdf]]</button> | |
<btn size="xs">[[https://www.lythia.com/|Main website]]</btn> |
It is often appealing to use non-breaking spaces (Alt+0160
) before the link label to force more space to be rendered between that text and the button's icon. Several icon libraries are available for use here, with the most common being the following:
- RPG Awesome,
ra
Several of the default link target settings have been changed in this wiki's configuration, so external and interwiki links will open in a new browser tab.
Tabs
These are used in the start
pages of namespaces under works
, such as Chybisa works, to separate the canon works from the fanon. In outline, their use looks like this.
<tabs justified="true"> * {{mdi>checkbox-marked}} [[#tab-canon|Canon]] * {{mdi>fan}} [[#tab-fanon|Fanon]] <pane id="tab-canon"> ... </pane> <pane id="tab-fanon"> ... </pane> </tabs>
Panels
These have been used in plain vanilla style, alone and within other bootstrap3
elements, such as the accordion. They were also used to put a frame around the heading examples in Works vs. world style guide. Basically <panel
tags are placed around the enclosed content like so:
<panel> ... </panel>
Accordions
One accordion has been used in conjunction with panels to tackle the extensive credits in HârnWorld Bestiary. The code is long, but looks something like this.
<accordion> <panel title="Aquatics #4614"> | table | of credits | ... </panel> <panel title="Bats #4633"> ... </panel> ... </accordion>