<a href="mailto:contactus@tw.in" style="font-weight:300;font-family:'Tahoma';color: #ffffff; text-decoration:none'"><i class="fa fa-envelope"></i> contactus@tw.in</a>
            </h3>
            <h3 class="fa-hover">
            <a target="_blank" href="https://www.facebook.com/tw.in" style="margin-right: 30px;font-weight:300;font-family:'Tahoma';color: #ffffff; text-decoration:none'"><i class="fa fa-facebook-official"></i> Like us       </a>
            <a target="_blank" href="https://www.twitter.com/tw" style="font-weight:300;font-family:'Tahoma';color: #ffffff; text-decoration:none'"><i class="fa fa-twitter"></i> Follow us</a>
            </h3>
        </div>
    </div>
</div>
      <div class="container-fluid" style="filter: alpha(opacity=90); opacity: 0.90;background-color: #DCFDFD;
      font-family:'Tahoma';color: #000000;">
        <div class="row">
          <div class="col-sm-8">
              <p id="copyright-section"> 
              	<a target="_blank" href="<?php 
echo AppCommon::getSiteBaseUrl() . '/site/page/view/about';
?>
">About</a> | 
              	<a target="_blank" href="#">Team</a> | 
              	<a target="_blank" href="#">Blog</a> | 
              	<a target="_blank" href="#">Terms of Service</a> | 
              	<a target="_blank" href="#">Privacy Policy</a> | 
              	<a target="_blank" href="#">FAQ</a> | 
              	<a target="_blank" href="#">Attributions</a></p>
          </div>
          <div class="col-sm-4">
            <p id="copyright-section">
              Copyright &copy; <?php 
echo date('Y');
?>
 by Put Your Enterprise Name pvt. ltd.<br/>
		</tr>
	
	<?php 
$orderValue = 0;
/* @var $row TiffinPriceTimeSelectionForm */
foreach ($selectedOrders as $key => $row) {
    $tiffinObj = $row->order2tiffin0;
    if (isset($tiffinObj->image)) {
        $imagePath = AppCommon::getAppFolderUrl() . '/images/tiffin_images/' . $tiffinObj->image;
    } else {
        $imagePath = AppCommon::getAppFolderUrl() . '/images/tiffin_images/5.jpg';
    }
    //default image
    echo '<tr>';
    echo '<td>';
    echo '<a target="_blank" href="' . AppCommon::getSiteBaseUrl() . '/tiffin/view/id/' . $tiffinObj->name . '-' . $tiffinObj->id . '">' . '<img src="' . $imagePath . '" alt="Loading..." style="width: 70px; float: left; height: 70px; margin-right: 5px; margin-bottom: 5px;"></a>' . '<b>' . $tiffinObj->name . '</b>' . '<p style="font-size: 80%;">' . $tiffinObj->contents . '</p>';
    echo '</td>';
    echo '<td>';
    echo $row->num_of_units;
    echo '</td>';
    echo '<td>';
    echo AppCommon::getDetailedDateString($row->order_delivery_time);
    echo '</td>';
    echo '<td>';
    echo '<b><i class="fa fa-inr"></i> ' . ' ' . $row->total_price . ' </b>';
    echo '</td>';
    echo '</tr>';
    $orderValue = $orderValue + $row->total_price;
}
?>