28 lines
923 B
Plaintext
28 lines
923 B
Plaintext
@inherits Umbraco.Web.Macros.PartialViewMacroPage
|
|
@{
|
|
var blogSelection = CurrentPage.Site().FirstChild("BlogPostRepository").Children("BlogPost").Where("Visible");
|
|
}
|
|
<div role="content">
|
|
<section class="light blogarchive equalizer">
|
|
<div class="container">
|
|
<div class="row">
|
|
@if (!blogSelection.Any())
|
|
{
|
|
<div>No news items to display.</div>
|
|
}
|
|
@foreach (var post in blogSelection)
|
|
{
|
|
<div class="col-sm-6">
|
|
<div class="content equal">
|
|
<a href="@post.Url">
|
|
<div class="date">@post.CreateDate.ToLongDateString()</div>
|
|
<h2>@post.Name</h2>
|
|
<p>@Umbraco.Truncate(post.Introduction, 240, true)</p>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div> |