Created
January 11, 2017 09:01
-
-
Save pvandervelde/d0d83eb2c636a5d3b63b5bf0cce6029c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{ | |
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