close jobs

This commit is contained in:
Jeremy Kauffman 2022-06-17 13:32:11 -04:00
parent e76380c06c
commit 7d00a97669
4 changed files with 13 additions and 9 deletions

View file

@ -1,7 +1,7 @@
--- ---
title: Backend Engineer title: Backend Engineer
order: 6 order: 6
status: active status: closed
location: remote (global) location: remote (global)
--- ---

View file

@ -1,7 +1,7 @@
--- ---
title: Application Engineer title: Application Engineer
order: 4 order: 4
status: active status: closed
location: remote (global) location: remote (global)
--- ---

View file

@ -1,7 +1,7 @@
--- ---
title: Protocol Engineer title: Protocol Engineer
order: 3 order: 3
status: active status: closed
location: remote (global) location: remote (global)
--- ---

View file

@ -1,6 +1,10 @@
<?php foreach ($jobs as $job): ?> <?php if (count($jobs)): ?>
<?php foreach ($jobs as $job): ?>
<?php echo View::render('content/_job', [ <?php echo View::render('content/_job', [
'metadata' => $job[0], 'metadata' => $job[0],
'jobHtml' => $job[1] 'jobHtml' => $job[1]
]) ?> ]) ?>
<?php endforeach ?> <?php endforeach ?>
<?php else: ?>
<div class="notice notice-warning spacer1">No jobs are currently open.</div>
<?php endif ?>