mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
10 lines
307 B
PHP
10 lines
307 B
PHP
<?php if (count($jobs)): ?>
|
|
<?php foreach ($jobs as $job): ?>
|
|
<?php echo View::render('content/_job', [
|
|
'metadata' => $job[0],
|
|
'jobHtml' => $job[1]
|
|
]) ?>
|
|
<?php endforeach ?>
|
|
<?php else: ?>
|
|
<div class="notice notice-warning spacer1">No jobs are currently open.</div>
|
|
<?php endif ?>
|