Template:Documentation
| File:TestTemplate-icon.svg | Template Documentation
This is the documentation page for the template |
Usage
This template is used to create a standardized infobox for software articles.
Syntax
Place the following code at the top of an article:
{{{{PAGENAME}}
| parameter1 = value1
| parameter2 = value2
...
}}
Parameters
| Parameter | Description | Status |
|---|---|---|
name
|
The common name of the software. | Optional |
logo
|
The filename of the software's logo image. | Optional |
description
|
A brief one-line description of the software's purpose. | Required |
latest_version
|
The current version number of the software. | Optional |
status
|
The development status (e.g., Active, Beta, Discontinued). | Optional |
developer
|
The individual or organization developing the software. | Optional |
programming_language
|
The language the software is written in. | Optional |
license
|
The software's license (e.g., MIT, GPLv3). | Optional |
website
|
URL for the official homepage. | Optional |
repository
|
URL for the source code repository. | Optional |
Examples
Example 1: Basic Usage
{{{{PAGENAME}}
| name = MyApp
| description = A revolutionary new application.
| latest_version = 2.0
| status = Stable
}}
Example 2: Full Usage
{{{{PAGENAME}}
| name = MyApp
| logo = MyApp-logo.png
| description = A revolutionary new application.
| latest_version = 2.0
| status = Stable
| developer = Awesome Devs Inc.
| programming_language = Python
| license = MIT License
| website = https://myapp.example.com
| repository = https://git.example.com/myapp
}}