I am currently customizing a template for my MEAN app and I am trying to showcase some information retrieved from the database in three columns. However, I am facing an issue where the ng-repeat function is only displaying the data in a single column.
Below is the code snippet:
<div class="row mt-5">
<div ng-repeat="woman in women">
<div class= "col-md-4">
<!--Card-->
<div class="card">
<!--Card image-->
<img class="img-fluid" src="{{woman.image_url}}" alt="{{woman.name}}">
<!--Card content-->
<div class="card-body">
<!--Title-->
<h4 class="card-title">{{woman.name}}</h4>
<!--Text-->
<p class="card-text"> <h5>{{woman.field}}</h5> <br> {{woman.job}}</p>
<a href="#!/women/details/{{woman._id}}" class="btn btn-primary">Learn more</a>
</div>
</div>
<!--/.Card-->
</div>
</div>
</div>
Currently, I am resizing the images to have a uniform size. Additionally, I am looking to only display a portion of the images in this view, with the full image being visible in the detailed view.
Thank you!