forked from albertibass/ggso_website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
past.html
26 lines (24 loc) · 933 Bytes
/
past.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
---
layout: info
title: Past Tournaments
permalink: /past/
---
{% for tournament in site.data.tournaments %}
<div class="col-lg-12">
<h2>{{ tournament.year }} - {{ tournament.location }}</h2>
<h3>Division C Champion: {{ tournament.firstPlaceWinner }}</h3>
<div class="col-lg-6" style="margin-top:24px;">
<img class="tournamentPhoto" src="/img/tournaments/{{ tournament.firstPlacePicture }}">
<img class="tournamentPhoto" src="/img/tournaments/{{ tournament.directorsPhoto }}">
</div>
<div class="col-lg-4" style="margin-top:24px;"><p>{{ tournament.description }}</p>
<a href="{{ tournament.website }}" class="btn btn-mid">Go to webpage</a>
{% if tournament.pictures %}
<a href="{{ tournament.pictures }}" class="btn btn-mid" target="_blank">Pictures</a>
{% endif %}
{% if tournament.tests %}
<a href="{{ tournament.tests }}" class="btn btn-mid" target="_blank">Tests</a>
{% endif %}
</div>
{% endfor %}
</script>