Template:Infobox place: Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
ok it kinda works but still TODO |
yea |
||
Line 3: | Line 3: | ||
<div class="infobox-image">[[File:{{PAGENAME:{{{image}}}}}|300px]]</div>}} | <div class="infobox-image">[[File:{{PAGENAME:{{{image}}}}}|300px]]</div>}} | ||
<table class="infobox-table">{{#if:{{{releasedate|}}}|<tr> | <table class="infobox-table">{{#if:{{{releasedate|}}}|<tr> | ||
<th> | <th>Release</th> | ||
<td>{{{releasedate}}}</td> | <td>{{{releasedate}}}</td> | ||
</tr>}}{{#if:{{{version|}}}|<tr> | </tr>}}{{#if:{{{version|}}}|<tr> | ||
<th> | <th>Version</th> | ||
<td>{{{version}}}</td> | <td>{{{version}}}</td> | ||
</tr>}}{{#if:{{{clients|}}}|<tr> | </tr>}}{{#if:{{{clients|}}}|<tr> | ||
<th> | <th>Clients</th> | ||
<td>{{{clients}}}</td> | <td>{{{clients}}}</td> | ||
</tr>}}{{#if:{{{status|}}}|<tr> | |||
<th>Status</th> | |||
<td>{{{status}}}</td> | |||
</tr>}}{{#if:{{{credits|}}}|<tr> | </tr>}}{{#if:{{{credits|}}}|<tr> | ||
<th>Credits</th> | <th>Credits</th> | ||
Line 22: | Line 25: | ||
{ | { | ||
"params": { | "params": { | ||
" | "released": { | ||
"label": " | "label": "Released", | ||
"description": "The date that the latest version released.", | "description": "The date that the latest version released.", | ||
"example": "11-6 | "example": "2023-11-6", | ||
"type": " | "type": "date", | ||
"suggested": true | "suggested": true | ||
}, | }, | ||
" | "version": { | ||
"label": " | "label": "Version", | ||
"description": " | "description": "The latest version name/number.", | ||
"example": " | "example": "v1.0.1", | ||
"type": "string", | "type": "string", | ||
"suggested": true | "suggested": true | ||
}, | }, | ||
" | "clients": { | ||
"label": " | "label": "Clients", | ||
"description": " | "description": "The versions of Roblox this game is designed to work on, by year. Can either be a specific year or a range, but should be defined using Novetus formatting: <year> + E/M/L (early, mid, late).", | ||
"example": " | "example": "2008M -or- 2008M-2010L -or- 2008M+", | ||
"type": "string", | "type": "string", | ||
"suggested": true | "suggested": true | ||
}, | }, | ||
" | "status": { | ||
"label": " | "label": "Status", | ||
"description": "The | "description": "The current status of the project - 'active', 'planned', 'completed', 'on hiatus', and 'inactive' covers nearly all projects.", | ||
"example": " | "example": "Active", | ||
"type": "string", | "type": "string", | ||
"suggested": true | "suggested": true | ||
}, | }, | ||
" | "credits": { | ||
"label": " | "label": "Credits", | ||
"description": " | "description": "Place credits - developers, scripters, builders, musicians, etc.", | ||
"example": " | "example": "Builderman, Miked, Yorick", | ||
"type": "string", | "type": "string", | ||
"suggested": true | "suggested": true | ||
} | } | ||
}, | }, | ||
"description": "An infobox for use on | "description": "An infobox for use on places (games, showcases, builds, what have you).", | ||
"paramOrder": [ | "paramOrder": [ | ||
" | "released", | ||
" | "version", | ||
" | "clients", | ||
" | "status", | ||
" | "credits" | ||
] | ] | ||
} | } | ||
</templatedata> | </templatedata> | ||
An example... | |||
{{Infobox_place | {{Infobox_place | ||
| title = | | title = Welcome to ROBLOX Building | ||
| image = Welcome_to_ROBLOX_Building.png | | image = Welcome_to_ROBLOX_Building.png | ||
| | | releasedate = 2010-12-01 | ||
| | | clients = 2010L+ | ||
| | | status = Inactive | ||
| | | credits = ROBLOX | ||
}} | }} | ||
</noinclude> | </noinclude> |
Revision as of 05:45, 7 November 2023
Infobox place
The documentation page does not exist and must be created.
An infobox for use on places (games, showcases, builds, what have you).
Parameter | Description | Type | Status | |
---|---|---|---|---|
Released | released | The date that the latest version released.
| Date | suggested |
Version | version | The latest version name/number.
| String | suggested |
Clients | clients | The versions of Roblox this game is designed to work on, by year. Can either be a specific year or a range, but should be defined using Novetus formatting: <year> + E/M/L (early, mid, late).
| String | suggested |
Status | status | The current status of the project - 'active', 'planned', 'completed', 'on hiatus', and 'inactive' covers nearly all projects.
| String | suggested |
Credits | credits | Place credits - developers, scripters, builders, musicians, etc.
| String | suggested |
An example...