We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 426f284 commit 6c91c5eCopy full SHA for 6c91c5e
TestArena/Blog/BlogHome.razor
@@ -3,6 +3,14 @@
3
@using TestArena.Blog.Common.NavigationUtils
4
5
<h2 class="mb-4">Latest Blogs</h2>
6
+
7
+<h4 class="mb-4">
8
+ @foreach(var tag in SiteMap.Pages.SelectMany(x => x.Tags).Distinct())
9
+ {
10
+ var route = $"/filtered-blogs?tag={tag}";
11
+ <a href="@route" class="text-info px-2">#@tag</a>
12
+ }
13
+</h4>
14
<div class="row row-cols-1 row-cols-md-3 g-4 p-2">
15
16
@{
0 commit comments