CSY2028-assignment-2/templates/home.html.php

18 lines
583 B
PHP
Raw Normal View History

2023-01-23 16:08:16 +00:00
<main class="home">
<p>Welcome to Jo's Jobs, we're a recruitment agency based in Northampton. We offer a range of different office jobs. Get in touch if you'd like to list a job with us.</a></p>
2023-02-04 21:34:17 +00:00
<section>
<h2>Select the type of job you are looking for:</h2>
<ul>
<?php foreach($cats as $cat) { ?>
<li>
<a href="/jobs/category?page=<?=urlencode($cat->name)?>"><?=$cat->name?></a>
</li>
<?php } ?>
</ul>
</section>
<section>
<h2>Jobs About to close:</h2>
<ul class= "listing">
<?php require 'job.html.php' ?>
</ul>
2023-01-23 16:08:16 +00:00
</main>