-
Notifications
You must be signed in to change notification settings - Fork 3
/
previous.html
49 lines (49 loc) · 1.54 KB
/
previous.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
---
layout: home
title: Previous Workshops
description: Previous Workshops
---
<div id="nav">
<ul>
<li><a href="/about/">About</a></li>
<li class="selected"><a href="/">Courses</a></li>
<li><a href="/events/">Events</a></li>
<li><a href="mailto:[email protected]">Contact</a></li>
</ul>
</div>
<header class="hd_article" style="margin-left:-32px;">
<h1 class="isupcoming">All previous workshops</h1>
<div>See anything you like? Feel free to email us and we'll try to redo it!</div>
<div id="back">
<a href="/">back</a>
</div>
</header>
<ul class="posts">
{% for post in site.posts %}
{% if post.upcoming == false and post.categories contains 'class' %}
<li>
<div>
<a href="{{ post.url }}" class="h3">{{ post.title }}</a>
</div>
<small>
<date>{{ post.date | date_to_string }}</date>
</small>
</li>
{% endif %}
{% endfor %}
</ul>
</nav>
<div class="border"></div>
<div id="upcoming" class="post-link">
<a href="/">See our upcoming workshops</a>
<div class="caption">You can also ask us do redo them, and we'll do our best!</div>
</div>
<div id="suggest" class="post-link">
<div class="linkimg">
<div class="link">
<a href="mailto:[email protected]?subject=Suggestion for a class">Suggest a new workshop</a>
</div>
<img src="/img/mail.jpg"></img>
</div>
<div class="caption">Let us know what you'd like to learn. We often pick up on great suggestions</div>
</div>