Template:InfoboxProductLine: Difference between revisions
No edit summary |
added short description field for browser extension Tag: 2017 source edit |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
< | <includeonly><div class="infobox"> | ||
<div style="display:flex;gap:8px;flex-direction:column;"> | |||
<div class="infobox-title">{{{Title|{{PAGENAME}}}}}</div> | |||
<div class="infobox-image">[[File:{{{Logo}}}|200px]]</div> | |||
<table class="infobox-table"> | |||
<tr> | |||
<th colspan=2 class="infobox-table-caption" >Basic Information</th> | |||
</tr> | |||
<tr> | |||
<th>{{nowrap|Short description}}</th> | |||
<td>{{{short_description}}}</td> | |||
</tr> | |||
<tr> | |||
<th>{{nowrap|Release Year}}</th> | |||
<td>{{{Release Year}}}</td> | |||
</tr> | |||
<tr> | |||
<th>{{nowrap|Product Type}}</th> | |||
<td>{{{Product Type}}}</td> | |||
</tr> | |||
<tr> | |||
<th>{{nowrap|In Production}}</th> | |||
<td>{{{In Production}}}</td> | |||
</tr> | |||
<tr> | |||
<th>{{nowrap|Official Website}}</th> | |||
<td>{{{Official Website}}}</td> | |||
</tr> | |||
</table> | |||
</div> | |||
</div></includeonly><noinclude> | |||
== Usage == | |||
'''Short description:''' This appears as a browser alert when someone visits a site related to this product. Limit to 140 characters. | |||
{{InfoboxProductLine | |||
| Title = Product Name | |||
| short_description = Brief alert text for browser extension when users visit this product’s site | |||
| Release Year = 2000 | |||
| Product Type = Type of product | |||
| In Production = Yes | |||
| Official Website = https://example.com/ | |||
| Logo = QuestionMark.svg | |||
}} | |||
<pre> | |||
<nowiki> | |||
{{InfoboxProductLine | |||
| Title = | |||
| short_description = | |||
| Release Year = | |||
| Product Type = | |||
| In Production = | |||
| Official Website = | |||
| Logo = | |||
}} | |||
</nowiki> | |||
</pre> | |||
[[Category:Styling templates]] | |||
{{Clear}} | |||
== Template Data == | |||
<templatedata> | |||
{ | |||
"params": { | |||
"Title": { | |||
"type": "string", | |||
"description": "Name of Product Line", | |||
"required": true | |||
}, | |||
"short_description": { | |||
"type": "string", | |||
"description": "Appears in the browser extension when a user visits a site related to this product. Limit to 140 characters.", | |||
"required": true | |||
}, | |||
"Release Year": { | |||
"type": "string", | |||
"description": "What year was the product/product line introduced", | |||
"required": true | |||
}, | |||
"Product Type": { | |||
"type": "string", | |||
"description": "Classification of product (line)", | |||
"example": "Hardware, Software, Service, Laptop, Blender", | |||
"required": true | |||
}, | |||
"In Production": { | |||
"type": "string", | |||
"description": "Determines if a product is in production currently", | |||
"example": "Yes, No", | |||
"required": true | |||
}, | |||
"Official Website": { | |||
"type": "string", | |||
"description": "Website of product if it exists. (use wayback machine if necessary)", | |||
"required": true | |||
}, | |||
"Logo": { | |||
"description": "The logo associated with this product. If there is no specific logo, use a picture of the product.", | |||
"example": "filename.[jpg|png|svg]", | |||
"type": "wiki-file-name", | |||
"autovalue": "QuestionMark.svg", | |||
"default": "QuestionMark.svg", | |||
"required": true | |||
} | |||
}, | |||
"description": "This is a simple information box to use in product line articles. Includes structured data and a short description for external use.", | |||
"format": "block", | |||
"paramOrder": [ | |||
"Title", | |||
"short_description", | |||
"Release Year", | |||
"Product Type", | |||
"In Production", | |||
"Official Website", | |||
"Logo" | |||
] | |||
} | |||
</templatedata> | |||
</noinclude> |