21 lines
853 B
HTML
21 lines
853 B
HTML
<div class="cell medium-4 large-3 small-12">
|
|
<h2>{{job.company_name}}</h2>
|
|
<p>{{job.job_name}}<br>
|
|
{% if job.number_of_hours == 1 %}
|
|
Mindestgehalt: {{job.salary}}€ Stundenlohn<br></p>
|
|
{% else %}
|
|
monatliches Mindestgehalt:<br>
|
|
{{job.salary}}€ für {{job.number_of_hours}}h</p>
|
|
{% endif %}
|
|
{# only thumb and name of member #}
|
|
<a class="thumbnail member-thumb" href="{{job.pdf_location.url}}" style="width:200px;height:280px" target="_blank">
|
|
<img style="width:200px;height:280px" src="{{job.pdf_thumb_location}}" alt="" />
|
|
<div class="thumb-layer">
|
|
<div>
|
|
<h1>{{job.company_name}}</h1>
|
|
<p>{{job.job_name}}</p>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|