diff --git a/templates/views-view-table--front-page-job-search.tpl.php b/templates/views-view-table--front-page-job-search.tpl.php
index 6b46a63..154100d 100644
--- a/templates/views-view-table--front-page-job-search.tpl.php
+++ b/templates/views-view-table--front-page-job-search.tpl.php
@@ -4,19 +4,19 @@
  * if-statement for hiding the header when empty does not seem to work.
  */
 ?>
-<table <?php if ($classes) { print 'class="'. $classes . '" '; } ?><?php print $attributes; ?>>
-  <?php if (!empty($title)) : ?>
-  <caption><?php print $title; ?></caption>
-  <?php endif; ?>
-  <tbody>
-  <?php foreach ($rows as $row_count => $row): ?>
-  <tr class="<?php print implode(' ', $row_classes[$row_count]); ?>">
-    <?php foreach ($row as $field => $content): ?>
-    <td <?php if ($field_classes[$field][$row_count]) { print 'class="'. $field_classes[$field][$row_count] . '" '; } ?><?php print drupal_attributes($field_attributes[$field][$row_count]); ?>>
-      <?php print $content; ?>
-    </td>
-    <?php endforeach; ?>
-  </tr>
-    <?php endforeach; ?>
-  </tbody>
+<table<?php print $attributes; ?>>
+   <?php if (!empty($title)) : ?>
+       <caption><?php print $title; ?></caption>
+     <?php endif; ?>
+   <tbody>
+   <?php foreach ($rows as $delta => $columns): ?>
+       <tr<?php print $row_attributes[$delta]; ?>>
+           <?php foreach ($columns as $column => $item): ?>
+               <td<?php print $column_attributes[$delta][$column]; ?>>
+                   <?php print $item; ?>
+                 </td>
+             <?php endforeach; ?>
+         </tr>
+     <?php endforeach; ?>
+   </tbody>
 </table>
