-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
58 lines (39 loc) · 1.63 KB
/
index.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
52
53
54
55
56
57
58
---
layout: default
---
<div class="home">
<section class="intro">
<p><strong>PyDiff</strong> holds regular informal meetups in Cardiff for
anyone who uses or wants to learn about <a
href="http://python.org">Python</a>. Everyone is welcome, from experienced
programmers to new learners, wherever their interest lies. The usual format is a
series of lightning talks (everyone is welcome to talk) about Python related
topics but longer form talks also take place.</p>
</section>
<h1 class="page-heading">Recent and future events</h1>
{% capture current_date %} {{ 'now' | date: '%F'}} {% endcapture %}
<ul class="post-list">
{% for event in site.events %}
{% capture event_date %} {{ event.when | date: '%F'}} {% endcapture %}
{% if event_date >= current_date %}
<li>
<a class="post-link" href="{{ event.url | prepend: site.baseurl }}">{{ event.title }}</a>
<span class="post-meta">{{ event.when | date: "%b %-d, %Y" }} {{event.time}}</span>
{% if event.venue %}
at <span class="post-meta">{{ event.venue }}</span>
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
<!-- <h1 class="page-heading">News</h1>
<ul class="post-list">
{% for post in site.posts %}
{% capture post_date %} {{ post.date | date: '%s'}} {% endcapture %}
<li>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
</li>
{% endfor %}
</ul> -->
</div>