-
Notifications
You must be signed in to change notification settings - Fork 3
/
meetings.html
49 lines (43 loc) · 1.35 KB
/
meetings.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: default
title: Meetings by Date
permalink: /meetings/
---
<div class="Home">
<h2 class="Home-posts-title">Meetings</h2>
<p>{% include linkers/meetings-pages.md %}</p>
{% for post in site.posts %}
{% capture components %}
{%- for comp in post.components -%}
<a href="/meetings-components/#{{comp}}">{{comp}}</a>{% unless forloop.last %}, {% endunless %}
{%- endfor -%}
{% endcapture %}
{% capture month_year %}{{ post.date | date: "%b %Y" }}{% endcapture %}
{% if month_year != lastmy %}
{% if lastmy != nil %}</table></div>{% endif %}
<div id="{{ post.date | date: "%b%Y" }}">
<h3 class="meetings-index-section">{{ month_year }}</h3>
<table style="padding-left: 1.5em;">
{% endif %}
{% assign lastmy = month_year %}
<tr class="Home-posts-post">
<td class="Home-posts-post-date">
{{ post.date | date_to_string }}
</td>
<td class="Home-posts-post-arrow">
»
</td>
<td>
<a class="Home-posts-post-title" href="{{ post.url }}">{% if post.pr %}#{{ post.pr }} {% endif %}{{ post.title }}</a>
({{components}})
<span class="host">
hosted by
<a class="host" href="/meetings-hosts/#{{post.host}}">{{ post.host }}</a>
</span>
</td>
</tr>
{% endfor %}
</table>
</div>
</div>
<br>