blob: 5605d667ecc877274739ecd35f60b7b652ba6194 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@inherits StatiqRazorPage<TocItem>
<li>
<span>
@if (Model.Children.Count > 0)
{
<a class="expander"></a>
}
<a href="@(new RelativeUrl(Model.Link, Document.GetString(Keys.LinkRoot)).ToString())">@Model.Title</a>
</span>
@if (Model.Children.Any())
{
<partial name="_TocItems" for="@Model.Children" />
}
</li>
|