forked from vbaraku/SYSTRON
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathopportunities.html
More file actions
28 lines (24 loc) · 859 Bytes
/
opportunities.html
File metadata and controls
28 lines (24 loc) · 859 Bytes
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
---
layout: page
title: Opportunities
description: Join the SYSTRON Lab team
background: "/img/smart-cities.jpg"
---
{% for opportunity in site.opportunities %}
<article class="post-preview card mb-3">
<a class="stretched-link" href="{{ opportunity.url | prepend: site.baseurl | replace: '//', '/' }}" aria-label="{{ opportunity.title }}"></a>
<div class="card-body">
<h2 class="post-title">{{ opportunity.title }}</h2>
{% if opportunity.subtitle %}
<h3 class="post-subtitle">{{ opportunity.subtitle }}</h3>
{% else %}
<h3 class="post-subtitle">
{{ opportunity.excerpt | strip_html | truncatewords: 15 }}
</h3>
{% endif %}
{% if opportunity.closing %}
<p class="post-meta">Apply by {{ opportunity.closing | date: '%d %B %Y' }}</p>
{% endif %}
</div>
</article>
{% endfor %}