385
edits
(Created page with "<div style="display: flex; flex-flow: row wrap; justify-content: {{{justify|center}}}; align-items: {{{align|center}}}; background-color: {{{background-color|white}}};"> {{{co...") |
No edit summary |
||
Line 2: | Line 2: | ||
{{{content}}} | {{{content}}} | ||
</div> | </div> | ||
<noinclude> | |||
<templatedata> | |||
{ | |||
"params": { | |||
"justify": { | |||
"description": "flexbox css style options: flex-start | flex-end | center | space-between | space-around | space-evenly", | |||
"type": "string", | |||
"default": "center" | |||
}, | |||
"align": { | |||
"description": "flexbox css align-items options: flex-start | flex-end | center | baseline | stretch", | |||
"type": "string", | |||
"default": "center" | |||
}, | |||
"background-color": { | |||
"description": "css style for section background color", | |||
"type": "string" | |||
}, | |||
"content": { | |||
"required": true | |||
}, | |||
"section-title": { | |||
"description": "This will be displayed as an <h1> tag and will appear in the page table of contents.", | |||
"type": "string", | |||
"required": true | |||
}, | |||
"show-section-title": { | |||
"description": "Determines whether the title should be visible when rendered.", | |||
"type": "boolean", | |||
"default": "false" | |||
} | |||
}, | |||
"paramOrder": [ | |||
"section-title", | |||
"content", | |||
"show-section-title", | |||
"justify", | |||
"align", | |||
"background-color" | |||
], | |||
"format": "block" | |||
} | |||
</templatedata> | |||
</noinclude> |
edits