I would like to know what difference there is between using one versus the other, because you see it in the style documentation ( css ), and the other one in < strong> javascript .
<!--Opcion 1-->
<ul class="list">
<li class="item">
...
</li>
</ul>
<!--Opcion 2-->
<ion-list>
<ion-item ng-repeat="item in items">
Hello, {{item}}!
</ion-item>
</ion-list>
<!-- Opcion 1 - index.html -->
<div class="list">
<p></p>
<h1></h1>
</div>
<!-- Opcion 2 -->
<script type="text/ng-template" id="todos.html">
<!-- Contenido plantilla -->
</script>