Example Page Layout - Right Navigation (.NET)
This code sample takes the Left Navigation include and renders it in a quarter-width column on the right side of the Page. All other content is rendered in a three-quarter width column on the left of the page.
@model PageModel
<div class="page-row page-row-expanded @Model.HtmlClasses">
<div class="row">
<div class="col-sm-12 col-md-9">
@Html.DxaRegions(exclude: "Left Navigation", containerSize: 9)
</div>
<div class="col-sm-12 col-md-3">
@Html.DxaRegion("Left Navigation")
</div>
</div>
</div>