@inherits Umbraco.Web.Macros.PartialViewMacroPage
@{
var nextItem = Model.Content.FollowingSibling();
var previousItem = Model.Content.PrecedingSibling();
<p>
@if (previousItem != null) {
<a href="@previousItem.Url">Previous chapter</a>
if (nextItem != null) {
<span>|</span>
}
}
@if (nextItem != null) {
<a href="@nextItem.Url">Next chapter</a>
}
</p>
}