-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
27 lines (25 loc) · 987 Bytes
/
events.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
27
---
layout: blank_no_cache
title: Instances
page: blog
---
<div class="row">
<div class="col-lg-12 col-lg-offset-1">
{% for instance in site.data.events %}
<div class="row">
<div class="col-lg-7 col-lg-offset-0">
<div class="d-flex w-100 justify-content-between">
<h3 class="mb-1 post-title">{{ instance.name }}</h3>
</div>
<p class="mb-1">{{ instance.description }}</p>
{% if instance.url == 'TBA' %}
<p class="mb-1"><b>Instance URL</b>: TBA</p>
{% else %}
<p class="mb-1"><b>Instance URL</b>: <a href="{{instance.url}}" target="_blank">{{instance.url}}</a></p>
{% endif %}
</div>
<img class="rounded float-right" width="40%" height="100%" src="{{instance.img}}"></img>
</div>
{% endfor %}
</div>
</div>