Update detail template
authorSteve Sutton <steve@gaslightmedia.com>
Wed, 2 Dec 2015 21:20:47 +0000 (16:20 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Wed, 2 Dec 2015 21:20:47 +0000 (16:20 -0500)
Adding strong tag around the properties and categories labels.

views/front/jobDetail.php

index 066c72d..77e9b7b 100644 (file)
@@ -6,14 +6,14 @@
 <div class="small-12 columns">
     <h2><?php echo $job->post_title; ?></h2>
     <?php if ($job->staffords_jobs_property) : ?>
-    <div>
-    <?php echo (count( $job->staffords_jobs_property ) > 1 ) ? 'Properties:' : 'Property:' ?>
+    <div><strong>
+    <?php echo (count( $job->staffords_jobs_property ) > 1 ) ? 'Properties:' : 'Property:' ?> </strong>
     <?php echo implode(', ', $job->staffords_jobs_property);?>
     </div>
     <?php endif; ?>
     <?php if ($job->staffords_jobs_category) : ?>
-    <div>
-    <?php echo (count( $job->staffords_jobs_category ) > 1 ) ? 'Categories:' : 'Category:' ?>
+    <div><strong>
+    <?php echo (count( $job->staffords_jobs_category ) > 1 ) ? 'Categories:' : 'Category:' ?> </strong>
     <?php echo implode(', ', $job->staffords_jobs_category);?>
     </div>
     <?php endif; ?>