-
Notifications
You must be signed in to change notification settings - Fork 779
Expand file tree
/
Copy pathnews.md.j2
More file actions
35 lines (28 loc) · 1.04 KB
/
news.md.j2
File metadata and controls
35 lines (28 loc) · 1.04 KB
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
# News
Want to keep up with the AIP system, and what we are working on? Welcome to the
**AIP newsletter**, a monthly publication covering new AIP guidance, and any
other developments useful to API producers.
{% for n in site.collections.news.pages.values() | sort(reverse=True, attribute='code') -%}
### {{ n.config.news.month }} {{ n.config.news.year }}
##### [**{{ n.title }}**]({{ n.relative_uri }})
{{ n.config.news.description | default('AIP newsletter') }}
{% if n.config.news.aips.reviewing is defined or n.config.news.other is defined %}
<div class="aip-newsletter-highlights">
<p>Highlights:</p>
<ul class="highlights-list">
{% if n.config.news.aips.reviewing is defined %}
<li class="highlight-item">Reviewing:
<ul>
{% for aip in n.config.news.aips.reviewing %}
<li><a href="/{{ aip }}">AIP-{{ aip }}</a></li>
{% endfor %}
</ul>
</li>
{% endif %}
{% for other in n.config.news.other | default([]) %}
<li>{{ other }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endfor -%}