You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
567 B
30 lines
567 B
<div class="sectionContainer"> |
|
@foreach (var childPage in Section.WebPageModels) |
|
{ |
|
if (childPage.IsPrivate.Equals("True")) |
|
{ |
|
continue; |
|
} |
|
|
|
<DesktopNavLinkComponent Page=childPage></DesktopNavLinkComponent> |
|
} |
|
</div> |
|
|
|
<style> |
|
.sectionContainer { |
|
display: flex; |
|
flex-direction: column; |
|
gap: 4px; |
|
justify-content: flex-start; |
|
position: relative; |
|
width: 100%; |
|
} |
|
|
|
|
|
</style> |
|
|
|
@code { |
|
|
|
[Parameter] public WebSectionModel Section { get; set; } = default!; |
|
|
|
} |