-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathworkshops.html
51 lines (44 loc) · 2.08 KB
/
workshops.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: page
title: Workshops
permalink: /workshops/
---
<div>
<h4>Important Notes</h4>
<ul>
<li>Complete <a class="blackLink" href="https://goo.gl/forms/VXWJe9xYqwTRoQS42"><b class="highlight-link">this survey</b></a> before registering.<br></li>
<li>For <div class="tag-container"><p class="tag-text">Digital Representation</p></div> and <div class="tag-container"><p class="tag-text">Computation</p></div> workshops, you must bring your own laptop with the necessary software installed.</li>
<li><div class="tag-container"><p class="tag-text">Digital Fabrication</p></div> workshops are limited to 15 students per session.</li>
</ul>
</div>
<div class="small-12 columns line">
</div>
{% assign workshop_order = site.workshops | sort:date | reverse %}
{% for workshop in workshop_order %}
<div class="workshop-container small-12 medium-8 columns">
<p class="workshop-title">
<a class="blackLink" href="{{ workshop.url }}">{{ workshop.title }}</a>
<a class="blackLink" target="_blank" href="{{ workshop.registration }}">
{% if workshop.registration %}
<span class="registration-container">
<span class="registration-text">Register</span>
</span>
{% endif %}
</a>
</p>
<p class="datetime metadata"><time datetime="{{ workshop.start-date | date_to_xmlschema }}" itemprop="dateTimeStart">{{ workshop.start-date | date: "%A, %b %-d %Y %I:%M%P" }}</time> - <time datetime="{{ workshop.end-date | date_to_xmlschema }}" itemprop="dateTimeEnd">{{ workshop.end-date | date: "%I:%M%P" }}</time></p>
{% if workshop.location %}
<p class="where-who metadata">Location: {{ workshop.location }}</p>
{% endif %}
<p class="description">{{ workshop.details | truncate: 150 }}</p>
<div class="tag-section">
{% for tag in workshop.tags %}
<a class="tag-link" href="/tags/#{{ tag | prepend: site.baseurl }}">
<div class="tag-container {{ tag }}">
<p class="tag-text">{{ tag }}</p>
</div>
</a>
{% endfor %}
</div>
</div>
{% endfor %}