Ng-repeat for rows and items inside

Hello. I have a little problem. Now I have code below. But it’s work bad on the Android 4.0. I need something like in the picture. So I need repeat of row and 3 different items in the row. Can you help me.

    <div class="row">
      <div class="col col-33" ng-repeat="(key, value) in categoryMenuOut">
        <a href="#/category/{{chosenCat}}/{{key}}">
           `some code`
           <span class="name">{{value.name}}</span>
         </a>
       </div>
    </div>