Difference between revisions of "Contributing"
|  (Created page with "=== Adding an Infobox ===  There are a couple infobox templates which we use:  * Template:Infobox_company * Template:Infobox_robot  In both, all of the fields are opti...") | |||
| Line 23: | Line 23: | ||
| <syntaxhighlight lang="text"> | <syntaxhighlight lang="text"> | ||
| − | {{infobox | + | {{infobox robot | 
| | name = Name | | name = Name | ||
| | organization = Company | | organization = Company | ||
Revision as of 15:57, 24 April 2024
Adding an Infobox
There are a couple infobox templates which we use:
In both, all of the fields are optional, except for <name>.
To add a company infobox, use:
{{infobox company
| name = Name
| country = Country
| website_link = https://link.com/
| robots = [[Stompy]]
}}
To add a robot infobox, use:
{{infobox robot
| name = Name
| organization = Company
| video_link = https://youtube.com/
| cost = USD 1
| height = 10 ft
| weight = 100 kg
| speed = 1 m/s
| lift_force = 10 lb
| battery_life = 5 hr
| battery_capacity = 1 mWh
| purchase_link = https://buy.com
| number_made = 10
| dof = 10
| status = Available
}}

