Template:Infobox Startup: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
<templatestyles src="Template:Infobox/styles.css" /> | <templatestyles src="Template:Infobox/styles.css" /> | ||
<templatestyles src="Template:Infobox_Startup/styles.css" /> | |||
< | {{Infobox | ||
| name = {{{name|{{PAGENAMEBASE}}}}} | |||
| title = {{{name|{{PAGENAMEBASE}}}}} | |||
| label1 = Country | |||
| data1 = {{{country|}}} | |||
</ | |||
| label2 = Domain | |||
| data2 = {{{domain|}}} | |||
}} | |||
<noinclude> | |||
== Usage == | |||
<syntaxhighlight lang="wikitext"> | |||
{{Infobox_Startup | |||
| name = ExampleCo | |||
| country = Singapore | |||
| domain = example.com | |||
}} | |||
</syntaxhighlight> | |||
== TemplateData == | |||
<templatedata> | |||
{ | |||
"description": "A minimal infobox for startups extending the standard Infobox template.", | |||
"params": { | |||
"name": { | |||
"label": "Name", | |||
"description": "Startup name (defaults to page name if empty).", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"country": { | |||
"label": "Country", | |||
"description": "Country where the startup is based.", | |||
"type": "string", | |||
"suggested": true | |||
}, | |||
"domain": { | |||
"label": "Domain", | |||
"description": "Primary website domain (e.g., example.com).", | |||
"type": "string", | |||
"suggested": true | |||
} | |||
}, | |||
"paramOrder": ["name", "country", "domain"] | |||
} | |||
</templatedata> | |||
</noinclude> | |||
Revision as of 04:30, 9 November 2025
Usage
{{Infobox_Startup
| name = ExampleCo
| country = Singapore
| domain = example.com
}}
TemplateData
A minimal infobox for startups extending the standard Infobox template.
| Parameter | Description | Type | Status | |
|---|---|---|---|---|
| Name | name | Startup name (defaults to page name if empty). | String | suggested |
| Country | country | Country where the startup is based. | String | suggested |
| Domain | domain | Primary website domain (e.g., example.com). | String | suggested |