Example #1
0
    ?>
');
		<?php 
}
?>
	});
</script>

<table width="100%">
	<tr>
		<td><h1>Search Results</h1></td>
		<td align="right">
			<button class="button" 
			onclick="document.location.href='<?php 
echo Configuration::getURLPath() . "/search?" . $_SERVER['REDIRECT_QUERY_STRING'];
?>
'">
			Refine Search
			</button>
		</td>
	</tr>
</table>
<?php 
echo HTMLLayout::pagination($pages, $current_page);
?>
<br>
<div class="container">
<?php 
echo JobLayout::formatList($results);
?>
</div>
Example #2
0
<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>
Example #3
0
?>
</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">
	<?php 
echo JobLayout::formatList($latest_jobs);
?>
	<center><?php 
echo JobLayout::getViewOtherJobsButton();
?>
</center>
</div>
Example #4
0
		</td>
		<td valign="top">
		<h1>Featured Company</h1>
		
		<div class="container">
		<?php 
echo CompaniesLayout::featureCompany($featured_company);
?>
		</div>
		
		<br>
		<h1>Top Trending Jobs</h1>
		
		<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>
		
Example #5
0
echo JobLayout::getEmailToFriendButton();
?>
				<?php 
echo CompaniesLayout::getViewCompanyInfoButton($job->company);
?>
			</div>
		</td>
		<td valign="top" width="300px">
			<div class="container">
				<h3>Location</h3>
				<?php 
new Core_Map($job->latitude, $job->longitude);
?>
			</div>
		</td>
	</tr>
	<tr>
		<td colspan="2">
		<br>
<h2>Other Jobs from <?php 
echo "<a href='" . Configuration::getURLPath() . "/companies/view/" . $job->company . "'>" . $job->company . "</a>";
?>
</h2>
			<div class="container">
				<?php 
echo JobLayout::formatList($other_jobs);
?>
			</div>
		</td>
	</tr>
</table>
Example #6
0
<table width="100%">
<tr>
	<td><h1>Jobs</h1></td>
	<td align="right"><?php 
echo Form::quickSearch();
?>
</td>
	</tr>
</table>

<?php 
echo "<table align='center'><tr><td>" . HTMLLayout::pagination($jobs->pages, $jobs->current_page) . "</td></tr></table>";
?>
<div class="container">
	<?php 
echo JobLayout::formatList($jobs->data);
?>
</div><br>
<?php 
echo "<table align='center'><tr><td>" . HTMLLayout::pagination($jobs->pages, $jobs->current_page) . "</td></tr></table>";