Skip to content

Instantly share code, notes, and snippets.

@NaibafCH
Last active August 29, 2018 15:24
Show Gist options
  • Save NaibafCH/bf0a588f150b19d32d72ed3f6543f6c7 to your computer and use it in GitHub Desktop.
Save NaibafCH/bf0a588f150b19d32d72ed3f6543f6c7 to your computer and use it in GitHub Desktop.
<div class="tabs-container">
<ul>
@foreach (var tab in Model.TabItems)
{
<li>@tab.Title</li>
}
</ul>
@{
int i = 0;
foreach (var tab in Model.TabItems)
{
<div>
@Html.Sitecore().DynamicPlaceholder("tab", seed: i)
</div>
i++;
}
}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment