<dd><p>The outline of a ignite template. Templates are a blueprint that specify's
how to construct an element and then can be used to construct the element. Everything
starts with a template.</p>
</dd>
<dt><ahref="#div">div</a></dt>
<dd><p>An ignite template that can be used to construct a div element.</p>
</dd>
<dt><ahref="#a">a</a></dt>
<dd><p>An ignite template that can be used to construct a hyperlink element.</p>
</dd>
<dt><ahref="#input">input</a></dt>
<dd><p>An ignite template that can be used to construct a input element.</p>
</dd>
<dt><ahref="#textarea">textarea</a></dt>
<dd><p>An ignite template that can be used to construct a textarea element.</p>
</dd>
<dt><ahref="#button">button</a></dt>
<dd><p>An ignite template that can be used to construct a button element.</p>
</dd>
<dt><ahref="#h1">h1</a></dt>
<dd><p>An ignite template that can be used to construct a h1 element.</p>
</dd>
<dt><ahref="#h2">h2</a></dt>
<dd><p>An ignite template that can be used to construct a h2 element.</p>
</dd>
<dt><ahref="#h3">h3</a></dt>
<dd><p>An ignite template that can be used to construct a h3 element.</p>
</dd>
<dt><ahref="#h4">h4</a></dt>
<dd><p>An ignite template that can be used to construct a h4 element.</p>
</dd>
<dt><ahref="#h5">h5</a></dt>
<dd><p>An ignite template that can be used to construct a h5 element.</p>
</dd>
<dt><ahref="#h6">h6</a></dt>
<dd><p>An ignite template that can be used to construct a h6 element.</p>
</dd>
<dt><ahref="#hr">hr</a></dt>
<dd><p>An ignite template that can be used to construct a hr element.</p>
</dd>
<dt><ahref="#p">p</a></dt>
<dd><p>An ignite template that can be used to construct a p element.</p>
</dd>
<dt><ahref="#nav">nav</a></dt>
<dd><p>An ignite template that can be used to construct a nav element.</p>
</dd>
<dt><ahref="#ul">ul</a></dt>
<dd><p>An ignite template that can be used to construct a ul element.</p>
</dd>
<dt><ahref="#li">li</a></dt>
<dd><p>An ignite template that can be used to construct a li element.</p>
</dd>
<dt><ahref="#span">span</a></dt>
<dd><p>An ignite template that can be used to construct a span element.</p>
</dd>
<dt><ahref="#small">small</a></dt>
<dd><p>An ignite template that can be used to construct a small element.</p>
</dd>
<dt><ahref="#strong">strong</a></dt>
<dd><p>An ignite template that can be used to construct a strong element.</p>
</dd>
<dt><ahref="#i">i</a></dt>
<dd><p>An ignite template that can be used to construct an i element.</p>
</dd>
<dt><ahref="#table">table</a></dt>
<dd><p>An ignite template that can be used to construct a table element.</p>
</dd>
<dt><ahref="#td">td</a></dt>
<dd><p>An ignite template that can be used to construct a td element.</p>
</dd>
<dt><ahref="#th">th</a></dt>
<dd><p>An ignite template that can be used to construct a th element.</p>
</dd>
<dt><ahref="#tr">tr</a></dt>
<dd><p>An ignite template that can be used to construct a tr element.</p>
</dd>
<dt><ahref="#thead">thead</a></dt>
<dd><p>An ignite template that can be used to construct a thead element.</p>
</dd>
<dt><ahref="#tbody">tbody</a></dt>
<dd><p>An ignite template that can be used to construct a tbody element.</p>
</dd>
<dt><ahref="#br">br</a></dt>
<dd><p>An ignite template that can be used to construct a br element.</p>
</dd>
<dt><ahref="#img">img</a></dt>
<dd><p>An ignite template that can be used to construct a img element.</p>
</dd>
<dt><ahref="#label">label</a></dt>
<dd><p>An ignite template that can be used to construct a label element.</p>
</dd>
<dt><ahref="#select">select</a></dt>
<dd><p>An ignite template that can be used to construct a select element.</p>
</dd>
<dt><ahref="#option">option</a></dt>
<dd><p>An ignite template that can be used to construct a option element.</p>
</dd>
<dt><ahref="#script">script</a></dt>
<dd><p>An ignite template that can be used to construct a script element.</p>
</dd>
<dt><ahref="#form">form</a></dt>
<dd><p>An ignite template that can be used to construct a form element.</p>
</dd>
<dt><ahref="#header">header</a></dt>
<dd><p>An ignite template that can be used to construct a header element.</p>
</dd>
<dt><ahref="#footer">footer</a></dt>
<dd><p>An ignite template that can be used to construct a footer element.</p>
</dd>
<dt><ahref="#progress">progress</a></dt>
<dd><p>An ignite template that can be used to construct a progress element.</p>
</dd>
<dt><ahref="#svg">svg</a></dt>
<dd><p>An ignite template that can be used to construct a svg element.</p>
</dd>
<dt><ahref="#g">g</a></dt>
<dd><p>An ignite template that can be used to construct a g element.</p>
</dd>
<dt><ahref="#path">path</a></dt>
<dd><p>An ignite template that can be used to construct a path element.</p>
</dd>
<dt><ahref="#circle">circle</a></dt>
<dd><p>An ignite template that can be used to construct a circle element.</p>
</dd>
<dt><ahref="#line">line</a></dt>
<dd><p>An ignite template that can be used to construct a line element.</p>
</dd>
<dt><ahref="#text">text</a></dt>
<dd><p>Text is a special template that will construct a text element and automatically update the dom
if it's content changes.</p>
</dd>
<dt><ahref="#html">html</a></dt>
<dd><p>Html is a special template that can construct raw html or properties into the dom and automatically
update the dom if the property changes.</p>
</dd>
<dt><ahref="#list">list</a></dt>
<dd><p>A special ignite template that constructs a list of items using a template
that is dynamically created for each item.</p>
</dd>
<dt><ahref="#slot">slot</a></dt>
<dd><p>A slot template that mimicks the functionality of a slot element in Web Components. This can
be used to place children of a IgniteElement anywhere in the DOM. Slots don't actually construct an element,
they simply just place children in place where the slot was used. If classes, styles, or attributes are applied
to the slot they will be applied to the children of the slot.</p>
</dd>
<dt><ahref="#pagination">pagination</a></dt>
<dd><p>A pagination is a template that segments a list of items into pages based
on the items, page size, current page.</p>
</dd>
<dt><ahref="#pager">pager</a></dt>
<dd><p>A pager is a template that converts pagination information into elements
to form a page selection.</p>
</dd>
<dt><ahref="#population">population</a></dt>
<dd><p>An ignite template that can construct a population of items
based on a count.</p>
</dd>
</dl>
<aname="IgniteTemplate"></a>
## IgniteTemplate
The outline of a ignite template. Templates are a blueprint that specify's
how to construct an element and then can be used to construct the element. Everything
starts with a template.
<td>tagName</td><td><code>String</code></td><td><code></code></td><td><p>The tag name of the element this template will construct.</p>
</td>
</tr><tr>
<td>children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><code></code></td><td><p>An array of child elements to be added to this template.</p>
//You can easily create a template to construct any html element. See the following:
class div extends IgniteTemplate {
constructor(...items) {
super("div", items);
}
}
```
**Example**
```js
IgniteTemplate's construct method can be extended by adding a callback function to _constructors under a template:
template._constructors.push(() => console.log('constructed'));
```
**Example**
```js
IgniteTemplate's deconstruct method can be extended by adding a callback function to _destructors under a template:
template._destructors.push(() => console.log('destructed'));
<td>name</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>Name of the CSS class to add. Multiple CSS classes are supported if they are separated by a space.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>Optional function that can convert the class name into a different one.</p>
<td>name</td><td><code>String</code></td><td></td><td><p>The name of the attribute to add</p>
</td>
</tr><tr>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code> | <code>function</code> | <code>Array.<IgniteProperty></code></td><td></td><td><p>The value of the attribute to set, can be anything. If Property is passed it will auto update.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>Optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set on the element.</p>
</td>
</tr><tr>
<td>reflect</td><td><code>Boolean</code> | <code>function</code></td><td><code>false</code></td><td><p>Whether or not to reflect changes to the value of the element back to the property if one was used. If function passed it will be invoked on value change. Default is false.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>Optional function that can convert the value if needed. Default is null.</p>
</td>
</tr><tr>
<td>live</td><td><code>Boolean</code></td><td><code>false</code></td><td><p>Whether or not to reflect the value in realtime, ie anytime the input is changed before focus is lost. Default is false.</p>
<td>name</td><td><code>String</code></td><td></td><td><p>Name of the property to set.</p>
</td>
</tr><tr>
<td>value</td><td><code>Any</code> | <code>IgniteProperty</code></td><td></td><td><p>Value of the property to use. If a Property is passed the value will auto update.</p>
</td>
</tr><tr>
<td>reflect</td><td><code>Boolean</code></td><td><code>false</code></td><td><p>If true whenever this property is changed it's value will be passed back to the Property that was passed as value if one was passed.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>Optional function that can be used to convert the value if needed.</p>
<td>name</td><td><code>String</code></td><td></td><td><p>Name of the property to set.</p>
</td>
</tr><tr>
<td>value</td><td><code>Any</code> | <code>IgniteProperty</code></td><td></td><td><p>Value of the property to use. If a Property is passed the value will auto update.</p>
</td>
</tr><tr>
<td>reflect</td><td><code>Boolean</code></td><td><code>false</code></td><td><p>If true whenever this property is changed it's value will be passed back to the Property that was passed as value if one was passed.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>Optional function that can be used to convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>InnerHTML to set for element. If a property is passed the html will auto update.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>Optional function that can be used to convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code> | <code>Array.<IgniteProperty></code> | <code>function</code></td><td></td><td><p>text to be set for this element. If a property is passed the text will auto update.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>Optional function that can be used to convert the value if needed.</p>
Adds a single or series of children to be added once this template
is constructed. Numbers, Strings, and Properties passed will be added as HTML child elements.
**Kind**: instance method of [<code>IgniteTemplate</code>](#IgniteTemplate)
**Returns**: [<code>IgniteTemplate</code>](#IgniteTemplate) - This ignite template so function calls can be chained.
<td>...items</td><td><code>Number</code> | <code>String</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
Adds a reference callback function to be invoked once this template is constructed. The function will be invoked
with the constructed HTMLElement. If an IgniteProperty is passed it's value will be set to the constructed HTMLElement once
the template is constructed.
**Kind**: instance method of [<code>IgniteTemplate</code>](#IgniteTemplate)
**Returns**: [<code>IgniteTemplate</code>](#IgniteTemplate) - This ignite template so function calls can be chained.
<td>refCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback to be invoked with the HTMLElement of the element this template constructed.</p>
Adds an event by its name and the function to invoke once the event fires. Properties may be used
for the function, but their value must be a valid function in order to get a proper event callback.
**Kind**: instance method of [<code>IgniteTemplate</code>](#IgniteTemplate)
**Returns**: [<code>IgniteTemplate</code>](#IgniteTemplate) - This ignite template so function calls can be chained.
<td>eventName</td><td><code>String</code></td><td><p>The name of the event to add.</p>
</td>
</tr><tr>
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
Adds a special on resize event handler to this template that will
fire anytime the element is resized by using a resize observer. You can call this more than once to attach more than one callback.
**Kind**: instance method of [<code>IgniteTemplate</code>](#IgniteTemplate)
**Returns**: [<code>IgniteTemplate</code>](#IgniteTemplate) - This ignite template so function calls can be chained.
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
Adds a special on intersect event handler to this template that will fire
once the element is in view. You can call this more than once to attach more than one callback.
**Kind**: instance method of [<code>IgniteTemplate</code>](#IgniteTemplate)
**Returns**: [<code>IgniteTemplate</code>](#IgniteTemplate) - This ignite template so function calls can be chained.
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked by the event once it fires.</p>
<td>eventCallback</td><td><code>function</code> | <code>IgniteProperty</code></td><td><p>The callback function to be invoked once this element becomes visible.</p>
<td>name</td><td><code>String</code></td><td></td><td><p>The name of the CSS property to set.</p>
</td>
</tr><tr>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the property. If an IgniteProperty is used it will auto update this style.</p>
</td>
</tr><tr>
<td>priority</td><td><code>String</code></td><td><code></code></td><td><p>If set to "important" then the style will be marked with !important. Acceptable values: important, !important, true, false, null</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>Optional function to convert the value if needed.</p>
<td>value</td><td><code>Boolean</code> | <code>IgniteProperty</code></td><td></td><td><p>If true hides the element this template is constructing. If an IgniteProperty is passed it's value will auto update this.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function to convert the value if needed.</p>
<td>value</td><td><code>Boolean</code> | <code>IgniteProperty</code></td><td></td><td><p>If true hides the element this template is constructing. If an IgniteProperty is passed it's value will auto update this.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function to convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the id attribute of the element this template will construct.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the title attribute of the element this template will construct.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the for attribute of the element this template will construct.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the for attribute of the element this template will construct.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>Boolean</code> | <code>IgniteProperty</code></td><td></td><td><p>A value to determine whether or not the element should be marked as disable or not.</p>
</td>
</tr><tr>
<td>converter</td><td><code>*</code></td><td><code></code></td><td><p>Optional function that can convert the value if needed.</p>
<td>value</td><td><code>Boolean</code> | <code>IgniteProperty</code></td><td></td><td><p>A value to determine whether or not the element should be marked as readonly or not.</p>
</td>
</tr><tr>
<td>converter</td><td><code>*</code></td><td><code></code></td><td><p>Optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the type attribute of the element this template will construct.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the type attribute of the element this template will construct.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the type attribute of the element this template will construct.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the type attribute of the element this template will construct.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>name</td><td><code>String</code></td><td></td><td><p>The name of the data attribute to set on the element this template will construct.</p>
</td>
</tr><tr>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the data attribute of the element this template will construct.</p>
</td>
</tr><tr>
<td>converter</td><td><code>*</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the src attribute of the element to be constructed by this template.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the href attribute of the element to be constructed by this template.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the target attribute of the element to be constructed by this template.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the name attribute of the element to be constructed by this template.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>value</td><td><code>String</code> | <code>IgniteProperty</code></td><td></td><td><p>The value to set for the placeholder attribute of the element.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>An optional function that can convert the value if needed.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>...children</td><td><code>String</code> | <code>Number</code> | <code>IgniteProperty</code> | <code><ahref="#IgniteTemplate">IgniteTemplate</a></code></td><td><p>A series of children to be added to this template.</p>
<td>code</td><td><code>String</code> | <code>IgniteProperty</code></td><td><p>HTML code to be constructed within this template. If an IgniteProperty is passed it's value will be used.</p>
<td>list</td><td><code>Array</code> | <code>IgniteProperty</code></td><td></td><td><p>The list of items to construct within this template.</p>
</td>
</tr><tr>
<td>forEachCallback</td><td><code>function</code></td><td></td><td><p>A function that constructs a template foreach item.</p>
</td>
</tr><tr>
<td>reflect</td><td><code>Boolean</code></td><td><code>false</code></td><td><p>If true any items removed from the DOM will be removed from the list if they exist. By default this is false.</p>
new list(["1", "2", "3"], (item) => {
return new h1(item);
})
```
<aname="slot"></a>
## slot
A slot template that mimicks the functionality of a slot element in Web Components. This can
be used to place children of a IgniteElement anywhere in the DOM. Slots don't actually construct an element,
they simply just place children in place where the slot was used. If classes, styles, or attributes are applied
to the slot they will be applied to the children of the slot.
<td>items</td><td><code>Number</code> | <code>Array</code> | <code>IgniteProperty</code></td><td><p>The items to construct pages for.</p>
</td>
</tr><tr>
<td>pageSize</td><td><code>Number</code> | <code>IgniteProperty</code></td><td><p>The number of items to show per page.</p>
</td>
</tr><tr>
<td>currentPage</td><td><code>Number</code> | <code>IgniteProperty</code></td><td><p>The current page being shown.</p>
</td>
</tr><tr>
<td>pageRange</td><td><code>Number</code> | <code>IgniteProperty</code></td><td><p>The number of pages that can be selected at a time. 3 is typically chosen.</p>
</td>
</tr><tr>
<td>renderCallback</td><td><code>function</code></td><td><p>Render function for a page, pageIndex is the index of the page, current is whether or not this is the current page, dots is whether this render is for dots.</p>
<td>count</td><td><code>Number</code> | <code>IgniteProperty</code> | <code>Array.<IgniteProperty></code></td><td></td><td><p>The number of items in this population.</p>
</td>
</tr><tr>
<td>forEach</td><td><code>function</code></td><td></td><td><p>A function to generate items in the population.</p>
</td>
</tr><tr>
<td>converter</td><td><code>function</code></td><td><code></code></td><td><p>A converter to be used to convert the count if needed.</p>