20 lines
301 B
PHP
Executable File
20 lines
301 B
PHP
Executable File
<?php
|
|
/*
|
|
*
|
|
*/
|
|
?>
|
|
<div class="wrapper">
|
|
|
|
|
|
|
|
<div class="box">
|
|
<center><h1 style="font-size:50px">Jobs</h1></center>
|
|
<div class="openinggroup">
|
|
<?php
|
|
foreach($openings as $opening){
|
|
echo $this->element('job_opening_item',array('opening' => $opening));
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>>
|