14 lines
313 B
PHP
14 lines
313 B
PHP
|
|
<main class = "sidebar">
|
||
|
|
<section class="left">
|
||
|
|
<ul>
|
||
|
|
<?php require 'nav.html.php';?>
|
||
|
|
</ul>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<section class="right">
|
||
|
|
<h1> <?=$heading?> Jobs</h1>
|
||
|
|
<ul class="listing">
|
||
|
|
<?php require 'job.html.php';?>
|
||
|
|
</ul>
|
||
|
|
</section>
|
||
|
|
</main>
|