7 |
@ViewBag.SectionTitle.ToUpper()
8 | @if (Model.Posts.Count > 0)
9 | {
10 |
11 | @foreach (var futurePost in Model.Posts)
12 | {
13 | - @futurePost.Title - @futurePost.Time
14 | }
15 |
16 |
17 | if (Model.TotalCount > Model.Posts.Count)
18 | {
19 |
And @(Model.TotalCount - Model.Posts.Count) more posts are pending...
20 | }
21 | if (Model.LastPostDate != null)
22 | {
23 |
There are posts all the way to @Model.LastPostDate.Value.ToString("MMM dd, yyyy", CultureInfo.InvariantCulture)
24 | }
25 | }
26 | else
27 | {
28 |
No future posts left, oh my!
29 | }
30 |
--------------------------------------------------------------------------------
/RaccoonBlog.Web/Views/Section/List.cshtml:
--------------------------------------------------------------------------------
1 | @model IList