Last active
December 15, 2015 02:49
-
-
Save albertromkes/5190027 to your computer and use it in GitHub Desktop.
This file contains 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
@model ArticleViewModel | |
<div class="middleContent"> | |
@XPM.StartInlineEditingZone() | |
<h2>@XPM.Editable(m => m.Title)</h2> | |
<div class="intro"> | |
@XPM.Editable(m => m.Summary) | |
</div> | |
<ul> | |
@foreach(var relatedLink in Model.RelatedLinks) | |
{ | |
<li> | |
@XPM.Editable(m => m.RelatedLinks, relatedLink) | |
</li> | |
} | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment