src/Hitso/Bundle/ContentBundle/Resources/views/Front/Article/Elements/table.html.twig line 1

Open in your IDE?
  1. <div class="article__table">
  2.     <div class="article__table__inner">
  3.         <table class="article__table__table">
  4.             <table class="article__table__table">
  5.                 <thead class="article__table__thead">
  6.                 {% for colheader in element.thead %}
  7.                     <th>{{ colheader['text'] }}</th>
  8.                 {% endfor %}
  9.                 </thead>
  10.                 <tbody class="article__table__body">
  11.                 {% for row in element.tbody %}
  12.                     <tr>
  13.                         {% for col in row %}
  14.                             <td>{{ col['text'] }}</td>
  15.                         {% endfor %}
  16.                     </tr>
  17.                 {% endfor %}
  18.                 </tbody>
  19.             </table>
  20.         </table>
  21.     </div>
  22. </div>