-
Notifications
You must be signed in to change notification settings - Fork 1
/
doc-updates-q1-2024.html
34 lines (34 loc) · 1.17 KB
/
doc-updates-q1-2024.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
---
title: Documentation Updates
description: Below are documentation updates for January-March 2024.
parent: home
---
<h1>{{ page.title }}</h1>
<article class="bcls-article">
<summary>{{ page.description }}</summary>
<p><a href="/doc-updates-index.html">Index of all documentation updates</a></p>
{% for item in site.data.s-site-assets-data.doc-updates-q1-2024 %}
<section class="bcls-section">
<h2 id="{{ item.date | replace: " -", "_" }}">{{ item.date }}</h2>
{% for type in item.types %}
<h3>{{ type.type }}</h3>
{% if type.docs %}
<ul style="list-style: none;">
{% for doc in type.docs %}
{% if doc.Status == "Released" %}
<li><strong>Title:</strong> {{ doc.Title }}</li>
<li><strong>Description:</strong> {{ doc.Description }}</li>
<li><strong>Link:</strong> <a href="{{ doc.Link }}">{{ doc.Link }}</a></li>
<li style="margin-bottom: 1em;"><strong>Category:</strong> {{ doc.Category }}</li>
{% endif %}
{% endfor %}
</ul>
{% else %}
<ul style="list-style: none;">
<li style="margin-bottom: 1em;">No {{ type.type }}</li>
</ul>
{% endif %}
{% endfor %}
</section>
{% endfor %}
</article>