Template:Kalispell FHC Section: Difference between revisions
(Added space to fix the weird DisplayTitle issue.) |
No edit summary |
||
| (23 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
<div style=" | <div style="display: flex; flex-flow: row wrap; justify-content: {{{justify|center}}}; align-items: {{{align|center}}}; background-color: {{{background-color|white}}};"> | ||
{{{content}}} | |||
</div> | </div> | ||
<noinclude> | <noinclude> | ||
<templatedata> | <templatedata> | ||
{ | { | ||
"params": { | "params": { | ||
" | "justify": { | ||
"description": "css | "description": "flexbox css style options: flex-start | flex-end | center | space-between | space-around | space-evenly", | ||
"type": "string", | "type": "string", | ||
"default": "center" | "default": "center" | ||
}, | }, | ||
" | "align": { | ||
"description": "css | "description": "flexbox css align-items options: flex-start | flex-end | center | baseline | stretch", | ||
"type": "string", | "type": "string", | ||
"default": " | "default": "center" | ||
}, | }, | ||
" | "background-color": { | ||
"description": "css style for section background color", | "description": "css style for section background color", | ||
"type": "string" | "type": "string" | ||
}, | }, | ||
" | "content": { | ||
"required": true | "required": true | ||
}, | }, | ||
" | "section-title": { | ||
"description": "This will be displayed as an <h1> tag and will appear in the page table of contents.", | "description": "This will be displayed as an <h1> tag and will appear in the page table of contents.", | ||
"type": "string", | "type": "string", | ||
"required": true | "required": true | ||
}, | }, | ||
" | "show-section-title": { | ||
"description": "Determines whether the title should be visible when rendered. | "description": "Determines whether the title should be visible when rendered.", | ||
"type": "boolean", | |||
"default": "false" | |||
"type": " | |||
"default": " | |||
} | } | ||
}, | }, | ||
"paramOrder": [ | "paramOrder": [ | ||
" | "section-title", | ||
"content", | |||
" | "show-section-title", | ||
" | "justify", | ||
" | "align", | ||
" | "background-color" | ||
], | ], | ||
" | "format": "block" | ||
} | } | ||
</templatedata> | </templatedata> | ||
</noinclude> | </noinclude> | ||
Revision as of 17:17, 21 January 2022
{{{content}}}
No description.
| Parameter | Description | Type | Status | |
|---|---|---|---|---|
| section-title | section-title | This will be displayed as an <h1> tag and will appear in the page table of contents. | String | required |
| content | content | no description | Unknown | required |
| show-section-title | show-section-title | Determines whether the title should be visible when rendered.
| Boolean | optional |
| justify | justify | flexbox css style options: flex-start | flex-end | center | space-between | space-around | space-evenly
| String | optional |
| align | align | flexbox css align-items options: flex-start | flex-end | center | baseline | stretch
| String | optional |
| background-color | background-color | css style for section background color | String | optional |