Oliver Booth
cf4d92c035
The model contains a 1-based page number, whereas GetBlogPosts wants 0-based index, causing an entire page to be missing.
23 lines
665 B
Plaintext
23 lines
665 B
Plaintext
@page "/blog/page/{pageNumber:int}"
|
|
@model List
|
|
@using OliverBooth.Common.Data
|
|
@using OliverBooth.Common.Data.Blog
|
|
@using OliverBooth.Common.Services
|
|
|
|
@inject IBlogPostService BlogPostService
|
|
|
|
@await Html.PartialAsync("Partials/_MastodonStatus")
|
|
|
|
<div id="all-blog-posts">
|
|
@foreach (IBlogPost post in BlogPostService.GetBlogPosts(Model.PageNumber - 1))
|
|
{
|
|
@await Html.PartialAsync("Partials/_BlogCard", post)
|
|
}
|
|
</div>
|
|
|
|
@await Html.PartialAsync("Partials/_PageTabs", new ViewDataDictionary(ViewData)
|
|
{
|
|
["UrlRoot"] = "/blog",
|
|
["Page"] = Model.PageNumber,
|
|
["PageCount"] = BlogPostService.GetPageCount(visibility: Visibility.Published)
|
|
}) |