|
|
| Line 1: |
Line 1: |
| <table class="infobox" style="margin:0 0 1em 1em;
| | {{#if: {{{name|}}} | {{{name}}} }} |
| background:#f8f9fa; border:1px solid #aaa; border-collapse:collapse;
| |
| font-size:88%; line-height:1.5em; width:22em;">
| |
| | |
| {{#if: {{{name|}}} | | |
| <tr>
| |
| <th colspan="2" style="text-align:center; padding:6px;><h1>{{{name}}}</h1></th>
| |
| </tr>
| |
| }}
| |
| | |
| {{#if: {{{image|}}} |
| |
| <tr>
| |
| <td colspan="2" style="text-align:center; padding:6px;">
| |
| [[File:{{{image}}}|220px]]
| |
| </td>
| |
| </tr>
| |
| }}
| |
| | |
| {{#if: {{{capital|}}} |
| |
| <tr>
| |
| <th style="padding:4px 8px; background:#eaecf0; width:40%;">Capital</th>
| |
| <td style="padding:4px 8px;">{{{capital}}}</td>
| |
| </tr>
| |
| }}
| |
| | |
| {{#if: {{{population|}}} |
| |
| <tr>
| |
| <th style="padding:4px 8px; background:#eaecf0;">Population</th>
| |
| <td style="padding:4px 8px;">{{{population}}}</td>
| |
| </tr>
| |
| }}
| |
| | |
| {{#if: {{{gdp|}}} |
| |
| <tr>
| |
| <th style="padding:4px 8px; background:#eaecf0;">GDP (nominal)</th>
| |
| <td style="padding:4px 8px;">{{{gdp}}}</td>
| |
| </tr>
| |
| }}
| |
| | |
| {{#if: {{{currency|}}} |
| |
| <tr>
| |
| <th style="padding:4px 8px; background:#eaecf0;">Currency</th>
| |
| <td style="padding:4px 8px;">{{{currency}}}</td>
| |
| </tr>
| |
| }}
| |
| | |
| {{#if: {{{government|}}} |
| |
| <tr>
| |
| <th style="padding:4px 8px; background:#eaecf0;">Government</th>
| |
| <td style="padding:4px 8px;">{{{government}}}</td>
| |
| </tr>
| |
| }}
| |
| | |
| {{#if: {{{population|}}} |
| |
| <tr>
| |
| <th style="padding:4px 8px; background:#eaecf0;">Area</th>
| |
| <td style="padding:4px 8px;">{{{area|—}}}</td>
| |
| </tr>
| |
| }}
| |
| | |
| </table>
| |
| | |
| <noinclude>
| |
| == Infobox Nation ==
| |
| Use this template on nation pages.
| |
| | |
| === Usage ===
| |
| <pre>
| |
| {{Infobox nation
| |
| |name =
| |
| |image =
| |
| |capital =
| |
| |population =
| |
| |gdp =
| |
| |currency =
| |
| |government =
| |
| |area =
| |
| }}
| |
| </pre>
| |
| | |
| === Example ===
| |
| <pre>
| |
| {{Infobox nation
| |
| |name = The Aurelias
| |
| |capital = Victoria Bay
| |
| |population = 5,100,000
| |
| |gdp = $455 billion
| |
| |currency = Aurelian Pound
| |
| |government = Constitutional Monarchy
| |
| |area = 14,000 km²
| |
| }}
| |
| </pre>
| |
| <templatedata>
| |
| {
| |
| "params": {
| |
| "name": {},
| |
| "image": {},
| |
| "capital": {},
| |
| "population": {},
| |
| "gdp": {},
| |
| "currency": {},
| |
| "government": {},
| |
| "area": {}
| |
| }
| |
| } | |
| </templatedata></noinclude>
| |