-
Notifications
You must be signed in to change notification settings - Fork 72
/
meetings-hosts.html
56 lines (52 loc) · 1.64 KB
/
meetings-hosts.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
---
layout: default
title: Meetings by Host
permalink: /meetings-hosts/
---
{% capture raw_hosts %}
{%- for meeting in site.posts -%}
{%- if meeting.layout == 'pr' -%}
{%- if meeting.host == empty -%}
{% include ERROR_92_MISSING_TOPIC_CATEGORY %}
{%- endif -%}
{{meeting.host}}|
{%- endif -%}
{%- endfor -%}
{% endcapture %}
{% assign hosts = raw_hosts | split: "|" | sort_natural | uniq %}
<div class="Home">
<h2 class="Home-posts-title">Meetings</h2>
<p>{% include linkers/meetings-pages.md %}</p>
{% for host in hosts %}
<div id="{{host}}">
<h3 class="meetings-index-section">
{{host}}
<a href="https://github.com/{{host}}"><i class="fa fa-github"></i></a>
</h3>
<table style="padding-left: 1.5em">
{% 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 %}
{% if post.host == host %}
<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}})
</td>
</tr>
{%- endif -%}
{% endfor %}
</table>
</div>
{% endfor %}
</div>
<br>