-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
51 lines (40 loc) · 1.83 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
---
layout: default
---
<h2 style="text-align:center">Talk.CSS appreciates your support</h2>
<img src="{{ site.url }}/assets/img/thanks.jpg" srcset="{{ site.url }}/assets/img/[email protected] 2x" alt="Talk.CSS thanks you for your support"/>
<p>We don't know where we will go from here yet, but the community is you. And if you are still around, we are still around. Ideas and suggestions for sharing CSS love welcome! Meanwhile, thanks to Engineers.SG and our completionist tendencies, we have records of all past events, so check out those you missed.</p>
{% for post in site.posts limit:0 %}
<article class="c-upcoming-event {{ post.css }}">
{% unless post.special %}
<header class="c-event__header">
<h2 class="c-event__title">
{{ post.title }}
</h2>
<p><strong>Event location:</strong> {{ post.location }}</p>
<p><strong>Event date:</strong> {{ post.event-date | date: "%b %-d, %Y" }}</p>
</header>
<a href="https://www.meetup.com/SingaporeCSS/events/{{ post.event-id }}/" class="c-rsvp"><span>RSVP</span><span>at meetup.com</span></a>
<div class="c-event__content">
{{ post.content | markdownify }}
</div>
{% endunless %}
{% if post.special %}
{{ post.content }}
{% endif %}
</article>
{% endfor %}
<hr>
<h2>Past meetups</h2>
<ul class="l-past-events c-past-events">
{% for post in site.posts offset:0 limit:3 %}
<li class="l-past-event c-past-event">
<a class="c-past-event__link" href="{{ post.url | prepend: site.baseurl }}">
<span class="c-past-event__meta">{{ post.event-date | date: "%b %-d, %Y" }}</span>
<h3>{{ post.title }}</h3>
</a>
</li>
{% endfor %}
</ul>
<a class="l-archive__link c-archive__link" href="{{ "/archives" | prepend: site.baseurl }}">View full list</a>
<p class="c-rss">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>