Skip to content

Instantly share code, notes, and snippets.

@pvandervelde
Created January 11, 2017 09:01
Show Gist options
  • Save pvandervelde/d0d83eb2c636a5d3b63b5bf0cce6029c to your computer and use it in GitHub Desktop.
Save pvandervelde/d0d83eb2c636a5d3b63b5bf0cce6029c to your computer and use it in GitHub Desktop.
@{
foreach(IDocument doc in Documents[BlogPipelines.RawPosts].Take(5))
{
<div id="post-spacer">
<div id="post">
<div id="post-header">
@Html.Partial("_PostHeader.cshtml", Tuple.Create(Model, doc))
</div>
<div id="post-content">
@Html.Raw(doc.Content)
</div>
</div>
</div>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment