-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathavailable-now.html
More file actions
111 lines (105 loc) · 4.71 KB
/
available-now.html
File metadata and controls
111 lines (105 loc) · 4.71 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
---
layout: default
title: Available Now
permalink: /available-now
---
<div class="container mt-5 pt-5">
<div class="row mb-3">
<div class="col-12">
<a href="index.html" class="btn btn-secondary">
<i class="fas fa-arrow-left"></i> Back to Home
</a>
</div>
</div>
<div class="row">
<div class="col-12">
<h1 class="mb-4">
<i class="fas fa-calendar-check text-success"></i> Available Now
</h1>
<p class="lead">Current workshop sessions open for registration</p>
<div class="alert alert-warning">
<i class="fas fa-university"></i> <strong>UC Berkeley Affiliates Only:</strong> Registration is restricted to current UC Berkeley students, staff, and faculty with valid CalNet credentials.
</div>
{% if site.data.upcoming_workshops.workshops.size > 0 %}
{% comment %} Count only registrable workshops (Part 1 or no parts) {% endcomment %}
{% assign registrable_count = 0 %}
{% for workshop in site.data.upcoming_workshops.workshops %}
{% unless workshop.title contains ": Part 2" or workshop.title contains ": Part 3" or workshop.title contains ": Part 4" or workshop.title contains ": Part 5" or workshop.title contains ": Part 6" %}
{% assign registrable_count = registrable_count | plus: 1 %}
{% endunless %}
{% endfor %}
<div class="alert alert-success">
<i class="fas fa-info-circle"></i> <strong>{{ registrable_count }} sessions</strong> currently available for registration.
</div>
<p class="text-muted mb-4">
Last updated: {{ site.data.upcoming_workshops.last_updated | date: "%B %d, %Y at %I:%M %p" }} PT
</p>
{% endif %}
</div>
</div>
{% if site.data.upcoming_workshops.workshops.size > 0 %}
<div class="row">
<div class="col-12">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>Workshop</th>
<th>Date & Time</th>
<th>Location</th>
<th>Action</th>
</tr>
</thead>
<tbody>
{% for session in site.data.upcoming_workshops.workshops %}
{% comment %} Only show registrable workshops (Part 1 or no parts) in the schedule {% endcomment %}
{% unless session.title contains ": Part 2" or session.title contains ": Part 3" or session.title contains ": Part 4" or session.title contains ": Part 5" or session.title contains ": Part 6" %}
<tr>
<td><strong><a href="{{ session.title | slugify | prepend: '/workshop/' | relative_url }}" class="text-decoration-none">{{ session.title }}</a></strong></td>
<td>
{{ session.datetime_iso | date: "%B %d, %Y" }}<br>
<small class="text-muted">{{ session.time }}</small>
</td>
<td>{{ session.location | default: "Online" }}</td>
<td>
{% if session.registration_url %}
<a href="{{ session.registration_url }}?utm_source=workshop_catalog&utm_medium=website&utm_campaign=available_now_registration" class="btn btn-sm btn-success" target="_blank">
<i class="fas fa-user-plus"></i> Register
</a>
{% else %}
<span class="text-muted">Registration TBA</span>
{% endif %}
</td>
</tr>
{% endunless %}
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% else %}
<div class="row">
<div class="col-12">
<div class="alert alert-info">
<h4><i class="fas fa-info-circle"></i> No Workshops Currently Scheduled</h4>
<p class="mb-2">There are no workshops with upcoming sessions at this time.</p>
<p class="mb-0">Please check back later or browse our <a href="index.html">full workshop catalog</a> to see all available materials.</p>
</div>
</div>
</div>
{% endif %}
<div class="row mt-5">
<div class="col-12">
<div class="card bg-light">
<div class="card-body">
<h5 class="card-title">Stay Updated</h5>
<p class="card-text">Want to be notified when new workshop sessions are scheduled?</p>
<a href="https://berkeley.us10.list-manage.com/subscribe?u=c23010ce537461167ececbcd3&id=422486ff04" class="btn btn-primary" target="_blank">
<i class="fas fa-envelope"></i> Join D-Lab's Mailing List
</a>
</div>
</div>
</div>
</div>
</div>