Skip to content

Commit 17f574d

Browse files
committed
move aside
1 parent e44e037 commit 17f574d

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

src/components/AvailableChangelogFeeds.astro

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,24 @@ const productsByGroup = Object.entries(
3737
productsByGroup.map(([group, products]) => (
3838
<>
3939
<AnchorHeading depth={4} title={group} />
40+
<p>
41+
This feed contains entries for all {group} products:{" "}
42+
<RSSButton changelog={group} />
43+
</p>
44+
<Details header="Included products">
45+
<ul>
46+
{products?.map((product) => (
47+
<li>
48+
<p>
49+
<a href={product.data.product.url}>
50+
{product.data.product.title}
51+
</a>
52+
</p>
53+
<RSSButton changelog={product.id} />
54+
</li>
55+
))}
56+
</ul>
57+
</Details>
4058
{group === "Application security" && (
4159
<Aside type="note" title="DDoS and WAF ruleset feeds">
4260
<p>
@@ -70,24 +88,6 @@ const productsByGroup = Object.entries(
7088
</p>
7189
</Aside>
7290
)}
73-
<p>
74-
This feed contains entries for all {group} products:{" "}
75-
<RSSButton changelog={group} />
76-
</p>
77-
<Details header="Included products">
78-
<ul>
79-
{products?.map((product) => (
80-
<li>
81-
<p>
82-
<a href={product.data.product.url}>
83-
{product.data.product.title}
84-
</a>
85-
</p>
86-
<RSSButton changelog={product.id} />
87-
</li>
88-
))}
89-
</ul>
90-
</Details>
9191
</>
9292
))
9393
}

0 commit comments

Comments
 (0)