-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
40 lines (30 loc) · 1.22 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
---
layout: default
---
<div class="home">
<p>{{ site.description }}</p>
<h2>Links</h2>
<p>Visit us at:</p>
<ul>
<li><a href="http://www.meetup.com/djangolondon/">Meetup.com</a></li>
<li><a href="https://fosstodon.org/@djangolondon">Mastodon</a></li>
<li><a href="https://twitter.com/djangolondon">Twitter</a></li>
<li><a href="https://www.linkedin.com/company/djangolondon">LinkedIn</a></li>
<li><a href="https://www.youtube.com/channel/UCNfEKvjjUemcg4wbb3cO5og">YouTube</a></li>
<li><a href="https://skillsmatter.com/groups/10546-london-django-meetup-group">Skills Matter</a></li>
<li><a href="https://github.com/djangolondon/">Github</a></li>
</ul>
<h2>Past Meetups</h2>
<ul>
{% assign sorted_meetups = site.meetups | sort: 'date' | reverse %}
{% for meetup in sorted_meetups %}
<li>
<a href="{{ meetup.url }}">
{{ meetup.title }} - {{ meetup.date | date: "%-d %B %Y" }}
</a>
</li>
{% endfor %}
</ul>
<h2>Code of Conduct</h2>
<p>Our meetups are governed by a <a href="{{ site.baseurl }}/code-of-conduct/">Code of Conduct</a>. Please take a few minutes to read it.</p>
</div>