-
Notifications
You must be signed in to change notification settings - Fork 72
/
meetings-prs.html
51 lines (45 loc) · 1.66 KB
/
meetings-prs.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
---
layout: default
title: Meetings by PR Number
permalink: /meetings-prs/
---
{% assign posts_by_pr_number = site.posts | sort: 'pr' | reverse %}
<div class="Home">
<h2 class="Home-posts-title">Meetings</h2>
<p>{% include linkers/meetings-pages.md %}</p>
<div id="{{pr}}">
<table>
{% for post in posts_by_pr_number %}
{% if post.pr %}
{% capture components %}
{%- for comp in post.components -%}
<a href="/meetings-components/#{{comp}}">{{comp}}</a>{% unless forloop.last %}, {% endunless %}
{%- endfor -%}
{% endcapture %}
{% capture authors %}
{%- for author in post.authors -%}
<a class="author" href="/meetings-authors/#{{author}}">{{author}}</a>
<a href="https://github.com/{{ author }}"><i class="fa fa-github"></i></a>
{% unless forloop.last %}, {% endunless %}
{%- endfor -%}
{% endcapture %}
{% capture this_pr_group %}{{ post.pr | divided_by: 1000 }}{% endcapture %}
{% if this_pr_group != last_pr_group and last_pr_group %}
</table>
<table class="padded">
{% endif %}
{% assign last_pr_group = this_pr_group %}
<tr class="Home-posts-post">
<td class="Home-posts-post-arrow">
»
</td>
<td>
<a class="Home-posts-post-title" href="{{ post.url }}"> <span class="Home-posts-post-pr">#{{ post.pr }}</span> {{ post.title }} </a> by {{ authors }} ({{components}})
</td>
</tr>
{% endif %}
{% endfor %}
</table>
</div>
</div>
<br>