Skip to content

Instantly share code, notes, and snippets.

@simple17
Created November 19, 2019 15:01
Show Gist options
  • Save simple17/c78673916cfbae4f635f939867f99c7c to your computer and use it in GitHub Desktop.
Save simple17/c78673916cfbae4f635f939867f99c7c to your computer and use it in GitHub Desktop.
[Rendering episerver LinkItemCollection] #episerver
@if (Model.StartPage.HeaderTopLinks != null)
{
foreach (var link in Model.StartPage.HeaderTopLinks)
{
<li>
<a href="@Url.ContentUrl(link.Href)" title="@link.Title">@link.Text</a>
</li>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment