-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathjobs.html
60 lines (56 loc) · 2.48 KB
/
jobs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
layout: default
title: Jobs
permalink: /jobs/
show-in-nav: true
---
<div class="page-section">
<h1>Jobs</h1>
<article class="article">
<p>CSS helps computer science students discover high-quality job opportunities.</p>
<p>
To post a job with us, simply
<a href="https://forms.office.com/r/pWnK6wTmys">fill out this form</a>.
Also consider
<a href="http://www.bristol.ac.uk/careers/employers/recruit/">advertising with the University Careers Service</a>,
and
<a href="https://www.bristol.ac.uk/engineering/ilo/students/mentoring/">signing up to be an industrial mentor</a>!
</p>
</article>
<div class="job-posts">
{% capture nowunix %}{{'now' | date: '%s' | plus: 7200}}{% endcapture %}
{% assign jobs = site.jobs | sort: "validThrough" %}
{% for job in jobs %}
{% unless job.hide %}
{% capture jobtime %}{{job.validThrough | date: '%s'}}{% endcapture %}
{% unless jobtime < nowunix %} <div itemscope itemtype="http://schema.org/JobPosting"
class="job-posts__item {% if job.sponsored %}job-posts__item--sponsored{% endif %} job-post-item {% if job.sponsored %}job-post-item--sponsored{% endif %}">
<a href="{{ job.url }}">
<h2 class="job-post-item__title">{{ job.title }}</h2>
<span itemprop="hiringOrganization" itemscope itemtype="http://schema.org/Organization">
<p class="job-post-item__company"><span itemprop="name">{{ job.hiringOrganization.name }}</span></p>
</span>
<p class="job-post-item__location">{{ job.jobLocation }}</p>
<p class="job-post-item__date">Posted <time datetime="{{ job.datePosted | date_to_xmlschema }}"
itemprop="datePosted">{{ job.datePosted | date: "%b %-d, %Y" }}</time></p>
<p class="job-post-item__date">Apply by <time datetime="{{ job.validThrough | date_to_xmlschema }}"
itemprop="validThrough">{{ job.validThrough | date: "%b %-d, %Y" }}</time></p>
{% if job.logo %}
{% include company_logo.html company=job.hiringOrganization.name %}
{% endif %}
</a>
</div>
{% endunless %}
{% endunless %}
{% endfor %}
</div>
</div>
<div class="page-section">
<h1>Careers Service</h1>
<article class="article">
<p>
You can also find opportunities on the University of Bristol's Careers Service page at:
<a href="http://www.bristol.ac.uk/careers/">http://www.bristol.ac.uk/careers/</a>
</p>
</article>
</div>