-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtech-challenges.html
More file actions
29 lines (28 loc) · 929 Bytes
/
tech-challenges.html
File metadata and controls
29 lines (28 loc) · 929 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
29
---
layout: default
title: Tech Challenges
subtitle: Participate in NUWIT's new technical interview challenges!
permalink: /tech-challenge/
---
<div id="opportunities">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<ul class="dates">
{% for opp in site.data.tech-challenges %}
<li>
<span class="date">{{ opp.date | date: "%B" | truncate: 3, ""}}<strong>{{ opp.date | date: "%-d" }}</strong></span>
<h3>{{ opp.title }}</h3>
<h4><a href="{{ opp.url }}" target="_blank">{{ opp.click }}</a></h4>
<p class="event-date">{{ opp.date }}<span class="event-location">{{ opp.location }}</span></p>
<p>{{ opp.description }}</p>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
<script>
var opportunities = {{ site.data.tech-challenges | jsonify }};
</script>