Skip to content

Commit 44b39fe

Browse files
committed
Fixed typos and example aria label
1 parent a8c9e05 commit 44b39fe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

LinkDotNet.Blog.Web/Shared/BlogPostNavigation.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
@using X.PagedList
22
@using LinkDotNet.Blog.Domain
3-
<nav aria-label="Page navigation example">
3+
<nav aria-label="Page navigation">
44
<ul class="pagination justify-content-center">
55
<li class="page-item @(!CurrentPage.IsFirstPage && CurrentPage.Count > 0 ? string.Empty : "disabled")">
6-
<a class="page-link" href="#" tabindex="-1" @onclick="PreviousPage">Previous</a>
6+
<a class="page-link" href="" tabindex="-1" @onclick="PreviousPage">Previous</a>
77
</li>
88
<li class="page-item @(!CurrentPage.IsLastPage && CurrentPage.Count > 0 ? string.Empty : "disabled")">
99
<a class="page-link"
1010
@onclick="NextPage"
11-
href="#">Next</a>
11+
href="">Next</a>
1212
</li>
1313
</ul>
1414
</nav>

LinkDotNet.Blog.Web/wwwroot/components/slideshow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ templateSlideshowContainer.innerHTML = `
3737
}
3838
3939
.text {
40-
color: var(--white);p
40+
color: var(--white);
4141
font-size: 15px;
4242
padding: 8px 12px;
4343
position: absolute;

0 commit comments

Comments
 (0)