Template:Colored box/doc: Difference between revisions

From CAPipedia
en>Krinkle
No edit summary
m 14 revisions imported
 
(4 intermediate revisions by 3 users not shown)
Line 17: Line 17:
"background-title-color": {},
"background-title-color": {},
"icon": {
"icon": {
"type": "wiki-file-name",
"type": "wiki-file-name"
"suggested": true
},
"title-color": {
"type": "string"
},
},
"title-color": {},
"title": {
"title": {
"required": true
"required": true,
"label": "Title text",
"type": "string"
},
"link-color": {},
"content": {
"required": true,
"label": "Content",
"type": "content"
},
"title-link": {
"label": "Title link",
"description": "Turn title area into a clickable link",
"type": "wiki-page-name"
},
"view-text": {
"description": "Replace link text for \"view-link\" with something other than \"view\".",
"type": "string"
},
},
"link": {
"view-link": {
"aliases": [
"link"
],
"description": "Create a \"view\" corner link to a given page.",
"type": "wiki-page-name"
"type": "wiki-page-name"
},
},
"link-color": {},
"view-extlink": {
"content": {
"aliases": [
"required": true
"link2"
],
"description": "Create a \"view\" corner link to a external URL. This cannot be used together with \"view-link\".",
"type": "url"
}
}
},
},
Line 36: Line 61:
"fr": "Le modèle boîte colorée est conçu pour les pages communautaires. Il s'inspire de la page d'accueil de Wikidata. "
"fr": "Le modèle boîte colorée est conçu pour les pages communautaires. Il s'inspire de la page d'accueil de Wikidata. "
},
},
"format": "block"
"format": "block",
"paramOrder": [
"background-content-color",
"class",
"style",
"background-title-color",
"icon",
"title",
"title-link",
"title-color",
"view-link",
"view-extlink",
"view-text",
"link-color",
"content"
]
}
}
</templatedata>
</templatedata>
Line 42: Line 82:
== Examples ==
== Examples ==


* <code><nowiki>{{Colored box|title=TITLE|content=CONTENT}}</nowiki></code>
=== Example: Title ===
<pre>
{{Colored box|title=TITLE|content=CONTENT}}
{{Colored box
|title=TITLE
|title-link=MediaWiki
|content=CONTENT
}}
</pre>
{{Colored box|title=TITLE|content=CONTENT}}
{{Colored box|title=TITLE|content=CONTENT}}
* <code><nowiki>{{Colored box|title=TITLE|link=MediaWiki|content=CONTENT}}</nowiki></code>
{{Colored box
{{Colored box|title=TITLE|link=MediaWiki|content=CONTENT}}
|title=TITLE
* <code><nowiki>{{Colored box|title=TITLE|link=MediaWiki|content=CONTENT|view-text=VIEW-TEXT}}</nowiki></code>
|title-link=MediaWiki
{{Colored box|title=TITLE|link=MediaWiki|content=CONTENT|view-text=VIEW-TEXT}}
|content=CONTENT
}}
 
=== Example: View link ===
<pre>
{{Colored box|title=TITLE|view-link=MediaWiki|content=CONTENT}}
{{Colored box|title=TITLE|view-link=MediaWiki|view-text=HELLO|content=CONTENT}}
{{Colored box|title=TITLE|view-extlink=https://mediawiki.org|view-text=HELLO|content=CONTENT}}
</pre>
{{Colored box|title=TITLE|view-link=MediaWiki|content=CONTENT}}
{{Colored box|title=TITLE|view-link=MediaWiki|view-text=HELLO|content=CONTENT}}
{{Colored box|title=TITLE|view-extlink=https://mediawiki.org|view-text=HELLO|content=CONTENT}}
 
=== Example: Everything ===


* <code><nowiki>{{Colored box|title=TITLE|link=MediaWiki|icon=OOjs_UI_icon_download-progressive.svg|content=CONTENT|view-text=VIEW-TEXT}}</nowiki></code>
Icon, title link, custom view-link text
{{Colored box|title=TITLE|link=MediaWiki|icon=OOjs_UI_icon_download-progressive.svg|content=CONTENT|view-text=VIEW-TEXT}}
<pre>
{{Colored box
|icon=OOjs_UI_icon_download-progressive.svg
|title=TITLE
|title-link=MediaWiki
|view-link=MediaWiki
|view-text=HELLO
|content=CONTENT
}}
</pre>
{{Colored box
|icon=OOjs_UI_icon_download-progressive.svg
|title=TITLE
|title-link=MediaWiki
|view-link=MediaWiki
|view-text=HELLO
}}


== See also ==
== See also ==
* This template was originally based on [[:w:en:Template:Colored box]].
* This template was originally based on [[:w:en:Template:Colored box]].

Latest revision as of 09:26, 8 April 2024

[[Category:Template documentation pages{{#translation:}}]]

<templatedata> { "params": { "background-content-color": {}, "class": { "label": "extra classes", "description": "Extra CSS classes to apply to the outermost box (space-separated). This is mainly for other templates using TemplateStyles so that they can scope their CSS to the box, but it may be useful in other cases as well.", "type": "line" }, "style": { "label": "extra styles", "description": "Extra inline CSS rules to apply to the outermost element. Prefer TemplateStyles and using CSS classes if possible when using this template in another template.", "type": "line" }, "background-title-color": {}, "icon": { "type": "wiki-file-name" }, "title-color": { "type": "string" }, "title": { "required": true, "label": "Title text", "type": "string" }, "link-color": {}, "content": { "required": true, "label": "Content", "type": "content" }, "title-link": { "label": "Title link", "description": "Turn title area into a clickable link", "type": "wiki-page-name" }, "view-text": { "description": "Replace link text for \"view-link\" with something other than \"view\".", "type": "string" }, "view-link": { "aliases": [ "link" ], "description": "Create a \"view\" corner link to a given page.", "type": "wiki-page-name" }, "view-extlink": { "aliases": [ "link2" ], "description": "Create a \"view\" corner link to a external URL. This cannot be used together with \"view-link\".", "type": "url" } }, "description": { "en": "This template is for community pages", "fr": "Le modèle boîte colorée est conçu pour les pages communautaires. Il s'inspire de la page d'accueil de Wikidata. " }, "format": "block", "paramOrder": [ "background-content-color", "class", "style", "background-title-color", "icon", "title", "title-link", "title-color", "view-link", "view-extlink", "view-text", "link-color", "content" ] } </templatedata>

Examples

Example: Title

{{Colored box|title=TITLE|content=CONTENT}}
{{Colored box
|title=TITLE
|title-link=MediaWiki
|content=CONTENT
}}
TITLE

CONTENT

CONTENT

Example: View link

{{Colored box|title=TITLE|view-link=MediaWiki|content=CONTENT}}
{{Colored box|title=TITLE|view-link=MediaWiki|view-text=HELLO|content=CONTENT}}
{{Colored box|title=TITLE|view-extlink=https://mediawiki.org|view-text=HELLO|content=CONTENT}}
TITLE

CONTENT

TITLE

CONTENT

TITLE

CONTENT

Example: Everything

Icon, title link, custom view-link text

{{Colored box
|icon=OOjs_UI_icon_download-progressive.svg
|title=TITLE
|title-link=MediaWiki
|view-link=MediaWiki
|view-text=HELLO
|content=CONTENT
}}

{{{content}}}

See also