28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
@model IList<BlogPostYearModel>
|
|
@if (Model.Count > 0)
|
|
{
|
|
<div class="block block-blog-archive">
|
|
<div class="title">
|
|
<strong>@T("Blog.Archive")</strong>
|
|
</div>
|
|
<div class="listbox">
|
|
<ul class="list" id="blog-month-list">
|
|
@foreach (var yearItem in Model)
|
|
{
|
|
<li class="year">
|
|
<strong class="number">@(yearItem.Year)</strong>
|
|
<ul class="sublist" id="blog-year-@(yearItem.Year)">
|
|
@foreach (var monthItem in yearItem.Months)
|
|
{
|
|
<li class="month">
|
|
<a href="@Url.RouteUrl("BlogByMonth", new { month = yearItem.Year + "-" + monthItem.Month })">@(new DateTime(yearItem.Year, monthItem.Month, 1).ToString("MMMM"))
|
|
(@(monthItem.BlogPostCount))</a>
|
|
</li>
|
|
}
|
|
</ul>
|
|
</li>
|
|
}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
} |