scribd.github.io/_includes/related-jobs.html

23 lines
915 B
HTML

{%- if page.team and site.data.teams[page.team] -%}
<section>
<h5 class="mb-3">Related Jobs
<a href="{% link careers.html %}#open-positions" class="float-right monospace fs-md fw-normal no-underline">
View All <span class="visually-hidden">Jobs</span>
<svg class="svg-icon"><use xlink:href="{{ '/assets/images/icons/icon-sprite.svg#arrow-right' | relative_url }}"></use></svg>
</a>
</h5>
<ul class="card-grid card-grid-sm" id="jobs"></ul>
<script type="text/javascript">
<!--
window.onload = () =>{
renderJobs(document.getElementById('jobs'), "{{ site.data.teams[page.team].lever }}", 4);
// Always include some Engineering jobs if we have any general ones
renderJobs(document.getElementById('jobs'), "{{ site.data.teams['Engineering'].lever }}", 2);
};
-->
</script>
</section>
{%- endif -%}