-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkshop_ad.html
35 lines (35 loc) · 973 Bytes
/
workshop_ad.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
28
29
30
31
32
33
34
35
{% comment %}
Advertising box at the top of a workshop website home page.
{% endcomment %}
<div class="jumbotron">
<div class="row">
<div class="col-md-10 col-md-offset-1">
{% unless site.title == "Workshop Title" or site.title == "" %}
<h2>{{site.title}}</h1>
{% endunless %}
<h2>{{page.venue}}</h2>
<div class="row">
<div class="col-md-6">
<p>{{page.humandate}}</p>
<p>{% if page.humantime %}{{page.humantime}}{% endif %}</p>
</div>
<div class="col-md-6">
<p>
<strong>Instructors:</strong>
{% if page.instructor %}
{{page.instructor | join: ', ' %}}
{% else %}
to be announced.
{% endif %}
</p>
{% if page.helper %}
<p>
<strong>Helpers:</strong>
{{page.helper | join: ', ' %}}
</p>
{% endif %}
</div>
</div>
</div>
</div>
</div>