<table cellspacing="10" width="100%"> <tr> <td><h1>Jobs by <?php echo "<a href='" . Configuration::getURLPath() . "/companies/info/" . $company . "'>" . $company . "</a>"; ?> </h1></td> <td align="right"> <button class="button" onclick="document.location.href='<?php echo $_SERVER['HTTP_REFERER']; ?> '">Back to List</button> <?php echo CompaniesLayout::getViewCompanyInfoButton($company); ?> </td> </tr> </table> <div class="container"> <?php echo JobLayout::formatList($jobs); ?> </div>
<div class="container"> <?php echo JobLayout::formatList($trending_jobs, true); ?> </div> <br> <h1>Hiring Companies</h1> <div class="container"> <?php echo CompaniesLayout::formatList($companies); ?> <?php echo "<center>" . CompaniesLayout::getViewAllCompaniesButton() . "</center>"; ?> </div> </td> </tr> <tr> <td colspan="2"> <h1>Popular job titles:</h1> <div class="container"> <?php foreach ($trending_jobs as $job) { echo "<a href='#'>" . $job->jobtitle . "</a> <br>"; } ?> </div>
<h3>Description</h3><br> <p><?php echo $company->description; ?> </p><br> <h3>Address</h3> <p><?php echo $company->address; ?> </p><br> <?php if (!empty($company->website)) { ?> <?php echo CompaniesLayout::getVisitCompanyWebsiteButton($company->website); ?> <?php } ?> <?php echo JobLayout::getViewAllJobsByCompanyNameButton($company->name); ?> </div> <br> <h1>Latest Jobs from <?php echo $company->name; ?> </h1> <div class="container">
<td><input type="text" name="jobtitle" value="<?php echo @$_GET['jobtitle']; ?> " /></td> </tr> <tr> <td><label for="email">Company</label></td> <td><input type="text" name="company" value="<?php echo @$_GET['company']; ?> " /></td> </tr> <tr> <td colspan="2"><input class="submit" type="submit" value="Advance Search" /></td> </tr> </table> </form> </div> </td> <td valign="top" width="30%"> <h1>Hiring Companies</h1> <div class="container"> <?php echo CompaniesLayout::formatList($companies); ?> </div> </td> </tr> </table>