public:dojo:wiki:scc_reserve_bank_keys

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
public:dojo:wiki:scc_reserve_bank_keys [2023/12/20 18:17]
Nater Ormand removed
— (current)
Line 1: Line 1:
-<alert type="info"><TEXT align="center"> 
- 
-**This is a standard center-aligned alert, of the "info" variant.**  
- 
-This is a work in progress. 
- 
-</TEXT></alert> 
- 
-====== New Template ====== 
- 
-This is a new general template which adds details on some of the newer plugins available to wiki editors. This page is as much an informational resource on the wiki's capabilities as it is an example of how to format your pages. 
- 
-<grid><col md="3"> 
-{{INLINETOC 2-4}} 
-</col></grid> 
- 
-<grid> 
-<col md="3"><TEXT align="center"> 
-<code> 
-<grid><col md="3"> 
-{{INLINETOC 2-4}} 
-</col></grid> 
-</code> 
-</TEXT></col> 
-</grid> 
-===== The Standard Page Layout ===== 
-These bullet points represent the parts of a page from top to bottom.  
-  * Any page-wide alerts if applicable 
-  * The page title 
-  * A summary of the page 
-  * An inline Table of Contents if applicable 
-  * The main content of the page. 
- 
-===== Standard Page Elements ===== 
-These elements are present in all pages, and represent the basic formatting options for the wiki. 
- 
-==== Title and Headers ==== 
-Headers can be used to create links to specific parts of a page, and will show up in the page's table of contents. Headers are created by surrounding text with ''='' signs, and the more there are the larger the header will be. Each page supports a maximum of 6 different header sizes, and the topmost header will automatically be made into the page title.   
- 
-<code> 
-====== Size 6 Header ====== 
-===== Size 5 Header ===== 
-==== Size 4 Header ==== 
-=== Size 3 Header === 
-== Size 2 Header == 
-= Size 1 Header = 
-</code> 
- 
-==== Text ==== 
-Text can be manipulated in all sorts of ways, from changing the alignment to manually setting sizes and colors. Here's some examples in action: 
- 
-<TEXT align="left"> 
-**Bolded Text** - //Italicized Text// - __Underlined Text__ - <del>Struck Through Text</del> - ''Mono-Spaced Text'' 
- 
-**//__<del>''All of The Above''</del>__//** 
- 
-  - Here's an Ordered List Item 
-  - Keep in mind these don't work nicely with text alignments other then left. 
- 
-  * This is a bullet point 
-  * These also don't work with custom text alignments. 
- 
-<fc #ffa500>Some Orange Colored Text</fc> 
- 
-<fs xx-small>XX Small Text</fs> <fs x-small>/ X Small Text</fs> / Normal Text <fs large>/ Large Text</fs> <fs x-large>/ X Large Text</fs> <fs xx-large>/ XX Large Text</fs> 
- 
-</TEXT> 
- 
-<code> 
-<TEXT align="left"> 
-**Bolded Text** - //Italicized Text// - __Underlined Text__ - <del>Struck Through Text</del> - ''Mono-Spaced Text'' 
- 
-**//__<del>''All of The Above''</del>__//** 
- 
-  - Here's an Ordered List Item 
-  - Keep in mind these don't work nicely with text alignments other then left. 
- 
-  * This is a bullet point 
-  * These also don't work with custom text alignments. 
- 
-<fc #ffa500>Some Orange Colored Text</fc> 
- 
-<fs xx-small>XX Small Text</fs> <fs x-small>/ X Small Text</fs> / Normal Text <fs large>/ Large Text</fs> <fs x-large>/ X Large Text</fs> <fs xx-large>/ XX Large Text</fs> 
- 
-</TEXT> 
-</code> 
- 
-==== Columns ==== 
-A page can be split into a maximum of 12 columns through the ''col'' element. You'll want to use these in conjunction with a new ''grid'' for each row of columns, else differing column sizes could cause unexpected behavior. Here's an example implementation (The ''^'' in each column creates a table header which adds a background and shows column sizes. These are not part of the standard column element.):  
- 
-<grid> 
-<col md="1"> 
- 
-^  Here's a size 1 column  ^ 
- 
-</col> 
-<col md="2"> 
- 
-^  Here's a size 2 column  ^ 
- 
-</col> 
-<col md="3"> 
- 
-^  Here's a size 3 (quarter page) column  ^ 
- 
-</col> 
-<col md="6"> 
- 
-^  Here's a size 6 (half page) column  ^ 
- 
-</col> 
-</grid> 
- 
-<code> 
-<grid> 
-<col md="1"> 
- 
-^  Here's a size 1 column  ^ 
- 
-</col> 
-<col md="2"> 
- 
-^  Here's a size 2 column  ^ 
- 
-</col> 
-<col md="3"> 
- 
-^  Here's a size 3 (quarter page) column  ^ 
- 
-</col> 
-<col md="6"> 
- 
-^  Here's a size 6 (half page) column  ^ 
- 
-</col> 
-</grid> 
-</code> 
- 
-===== Bootstrap Elements ===== 
-These are a very powerful set of plugins with a wide range of uses. One of constant things between them is the ''type'' option which determines their color. The possible options are as follows, though be advised not all of them will be accepted for all elements: 
- 
-<label type="default">default</label> <label type="primary">primary</label> <label type="success">success</label> <label type="info">info</label> <label type="warning">warning</label> <label type="danger">danger</label> 
- 
-Documentation on all the possible implementations of this wrapper can be found here: http://www.lotar.altervista.org/wiki/wiki/plugin/bootswrapper 
- 
-==== Accordions ==== 
-Useful when a large amount of vertical space is needed for something, such as skillplans. Here's an example of it in action: 
- 
-<accordion> 
-<panel title="Test Accordion" subtitle="You can click to expand the hidden information" type="default"> 
- 
-Here's some hidden text. 
- 
-</panel> 
-</accordion> 
- 
-<code> 
-<accordion> 
-<panel title="Test Accordion" subtitle="You can click to expand the hidden information" type="default"> 
- 
-Here's some hidden text. 
- 
-</panel> 
-</accordion> 
- 
-</code> 
- 
-==== Alerts ==== 
-Alerts can be used when you want to draw attention to information on a page. Here's an example: 
- 
-<alert type="warning"><TEXT align="center"> 
- 
-**Look here! This is important!** 
- 
-</TEXT></alert> 
- 
-<code> 
-<alert type="warning"><TEXT align="center"> 
- 
-**Look here! This is important!** 
- 
-</TEXT></alert> 
-</code> 
- 
-==== Buttons ==== 
-Buttons are basically nicer links. Their height, color, and length are all variable. Here's an example small, primary button which links to the wiki home page: 
- 
-<btn type="primary" size="sm" block="false"> 
-[[https://wiki.bravecollective.com/start|Home Page]] 
-</btn> 
- 
-<code> 
-<btn type="primary" size="sm" block="false"> 
-[[https://wiki.bravecollective.com/start|Home Page]] 
-</btn> 
-</code> 
- 
-==== Callouts ==== 
-Callouts are similar to alerts in that they make information on a page stand out, but they do it in a less aggressive way. Here's an example of a Danger Callout: 
- 
-<callout title="Example Callout" type="danger"> 
-Hey look, an example! 
-</callout> 
- 
-<code> 
-<callout title="Example Callout" type="danger"> 
-Hey look, an example! 
-</callout> 
-</code>