Template:ContentCell/doc: Difference between revisions

From Official Factorio Wiki
Jump to navigation Jump to search
mNo edit summary
m (better examples)
Line 1: Line 1:
This template creates table cells, such as on the Main page. Centralizing them into a template allows for global editing of the style in the template without having to edit multiple locations on a page. <br/>
This template creates table cells, such as on the Main page. Centralizing them into a template allows for global editing of the style in the template without having to edit multiple locations on a page. <br/>
The longer parameters, such as content, are typically spread across several lines.
When using the longer parameters, such as a large amount of content, they can be spread across several lines as in example 2.


'' '''NOTE:''' This template still must be enclosed within braces to create a table, as shown in the example.''
'' '''NOTE:''' This template must be enclosed within braces to create a table as shown.''


;Example:
;Example 1:
:<code><nowiki>{| style="width:100%;"</nowiki><br/>
:<code><nowiki>{| style="width:100%;"</nowiki><br/>
:<nowiki>{{ContentCell|70%|title 1|Content 1|title 2|Content 2}}</nowiki><br/>
:<nowiki>{{ContentCell|70%|title 1|Content 1|title 2|Content 2}}</nowiki><br/>
:<nowiki>{{ContentCell||title 1|Content 1|title 2|Content 2}}</nowiki><br/>
:<nowiki>{{ContentCell||title 1|Content 1}}</nowiki><br/>
:<nowiki>|}</nowiki></code>
:<nowiki>|}</nowiki></code>


;Result:
;Example 2:
:<code><nowiki>{| style="width:100%;"</nowiki><br/>
:<nowiki>{{ContentCell|70%|title 1|</nowiki><br/>
:<nowiki>Content 1</nowiki>
:<nowiki>|title 2|</nowiki>
:<nowiki>Content 2</nowiki>
:<nowiki>}}</nowiki><br/>
:<nowiki>{{ContentCell||title 1|Content 1}}</nowiki><br/>
:<nowiki>|}</nowiki></code>
 
;Both Result In:
<code>
<code>
{| style="width:100%;"
{| style="width:100%;"
{{ContentCell|70%|title 1|Content 1|title 2|Content 2}}
{{ContentCell|70%|title 1|Content 1|title 2|Content 2}}
{{ContentCell||title 1|Content 1|title 2|Content 2}}
{{ContentCell||title 1|Content 1}}
|}
|}
</code>
</code>

Revision as of 05:14, 16 May 2014

This template creates table cells, such as on the Main page. Centralizing them into a template allows for global editing of the style in the template without having to edit multiple locations on a page.
When using the longer parameters, such as a large amount of content, they can be spread across several lines as in example 2.

NOTE: This template must be enclosed within braces to create a table as shown.

Example 1
{| style="width:100%;"
{{ContentCell|70%|title 1|Content 1|title 2|Content 2}}
{{ContentCell||title 1|Content 1}}
|}
Example 2
{| style="width:100%;"
{{ContentCell|70%|title 1|
Content 1
|title 2|
Content 2
}}
{{ContentCell||title 1|Content 1}}
|}
Both Result In