-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathjob_list.html
More file actions
30 lines (30 loc) · 1.47 KB
/
job_list.html
File metadata and controls
30 lines (30 loc) · 1.47 KB
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
{% macro render_job_list(job, from_index=false, loop=false) %}
<div class="job-listing{% if loop.last %} job-listing--last{% endif %}">
<div class="row">
<div class="col-xs-6 col-md-6">
<div class="row">
<div class="col-xs-6 col-md-3">
<img src="{{ job.company_photo }}" alt="{{ job.company }}" class="img-responsive">
</div>
<div class="col-xs-6">
{% if job.job_level %}
<h4 class="job__title"><a href="{{ job|url }}">[{{ job.job_level }}] {{ job.job }}</a></h4>
{% else %}
<h4 class="job__title"><a href="{{ job|url }}">{{ job.job }}</a></h4>
{% endif %}
<p class="job__company">{{ job.company }}</p>
</div>
</div>
</div>
<div class="col-xs-3 col-md-3">
<p><i class="fa fa-map-marker job__location"></i> <img width="16px" src="/static/img/flags/4x3/{{ job.company_country_abbreviation|lower}}.svg" alt="Brazil"> {{ job.company_city }}</p>
{% if job.company_email %}
<p><i class="fa fa-envelope-open-o" aria-hidden="true"></i> <a href="mailto:{{ job.company_email }}">{{ job.company_email }}</a></p>
{% endif %}
</div>
<div class="col-xs-3 col-md-3">
<p><i class="fa fa-calendar" aria-hidden="true"></i> {{ job.date }}</p>
</div>
</div>
</div>
{% endmacro %}