diff --git a/ignite-template.js b/ignite-template.js index be918e5..26d0227 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -2012,6 +2012,18 @@ class ul extends IgniteTemplate { } } +/** + * An ignite template that can be used to construct a ol element. + */ +class ol extends IgniteTemplate { + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("ol", children); + } +} + /** * An ignite template that can be used to construct a li element. */ @@ -3952,6 +3964,7 @@ export { i, nav, ul, + ol, li, br, img,