I have some html codes with bootstrap as shown below
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-12">
<ul>
<li> <a href="#"> Electric hoospital bed </a> </li>
<li> <a href="#"> Semi electric hospital bed </a> </li>
<li> <a href="#"> Manual hospital bed </a> </li>
<li> <a href="#"> Home care hospital bed </a> </li>
</ul>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-12">
<ul>
<li> <a href="#"> Orthopedics bed </a> </li>
<li> <a href="#"> Children's bed </a> </li>
<li> <a href="#"> Patient trolley </a> </li>
<li> <a href="#"> Stretcher </a> </li>
</ul>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-12">
<ul>
<li> <a href="#"> Nursing trolley </a> </li>
<li> <a href="#"> Cambered trolley </a> </li>
<li> <a href="#"> Obstetric table </a> </li>
<li> <a href="#"> Wheel chair </a> </li>
</ul>
</div>
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-12">
<ul>
<li> <a href="#"> Commode wheel chair </a> </li>
<li> <a href="#"> Walker </a> </li>
<li> <a href="#"> MRC </a> </li>
<li> <a href="#"> Foo </a> </li>
</ul>
</div>
I have an array of names of these hospital beds. How can I write this repeating HTML codes into two line code by using AngularJS?