jekyll-report-dashboard 0.1.20 → 0.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/release-note.html +2 -2
- data/index.markdown +13 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bf5ef531c878c510eac60c5667cc04722dceeed5ec5364728a30fbb2906d739
|
4
|
+
data.tar.gz: 5b4d025a2ac5e4dfd417fdacd251349a96fe5a08c0bbc73e729949d1d3a77706
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40b522313be4ffa60ba0bea8c0f0a6b2cc78df79945a9a4737083fff74747703e8ab5de4d67e26e03c24c9f26c814e115f1537a0efa5cf0582b922b50997a20a
|
7
|
+
data.tar.gz: c45c7db7424855a882ecc2e8bc220fd96d85e4468cc8d0278c43ac6ca3ad79244b652c07e865caa6d516c1c9abfe6f11f66710b5d21fe95990579d6b1b3c865a
|
data/_includes/release-note.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
<article class="@container border border-outline rounded-sm p-4 my-8">
|
1
|
+
<article class="@container border border-outline rounded-sm p-4 my-8 first:mt-0 last:mb-0">
|
2
2
|
<header class="block mb-8">
|
3
3
|
<div class="flex flex-row flex-wrap items-center mb-8">
|
4
|
-
<a class="text-primary font-semibold mr-4" href="{{ include.post.html_url }}">
|
4
|
+
<a class="text-primary font-semibold mr-4" href="{{ include.post.html_url }}" target="_blank">
|
5
5
|
<h1 class="text-nowrap text-3xl md:text-4xl font-semibold mb-0">{{ include.post.tag | escape }}</h1>
|
6
6
|
</a>
|
7
7
|
{% if include.post.prerelease %}
|
data/index.markdown
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
layout: home
|
3
3
|
---
|
4
4
|
|
5
|
-
<div class="xl:max-w-[68rem] 2xl:max-w-[80rem] md:grid md:grid-cols-
|
6
|
-
<div class="md:col-start-1 md:col-span-
|
5
|
+
<div class="xl:max-w-[68rem] 2xl:max-w-[80rem] md:grid md:grid-cols-5 md:gap-4 md:items-start md:justify-center">
|
6
|
+
<div class="md:col-start-1 md:col-span-3">
|
7
7
|
<div class="">
|
8
8
|
<h2 class="md:mt-0">Main</h2>
|
9
9
|
|
@@ -40,10 +40,16 @@ layout: home
|
|
40
40
|
</div>
|
41
41
|
</div>
|
42
42
|
|
43
|
-
<div class="md:
|
44
|
-
|
45
|
-
|
46
|
-
{%
|
47
|
-
|
43
|
+
<div class="md:col-start-4 md:col-span-2 md:mt-16">
|
44
|
+
<h3>Latest Releases</h3>
|
45
|
+
<div class="">
|
46
|
+
{% assign releases = site.categories["release"] | sort: 'published_at' | reverse %}
|
47
|
+
{% for post in releases limit: 12 %}
|
48
|
+
{% include release-note.html post=post content=post.content %}
|
49
|
+
{% endfor %}
|
50
|
+
</div>
|
51
|
+
<div class="flex justify-end mt-4 min-h-4">
|
52
|
+
<a href="{{ "/releases" | relative_url }}">View Previous Releases</a>
|
53
|
+
</div>
|
48
54
|
</div>
|
49
55
|
</div>
|