@if (!path()) {

{{ texts.emptyNoSelection.title }}

{{ texts.emptyNoSelection.desc }}

} @else if (!node()) {

{{ texts.emptyNotFound.title }}

{{ path() }} {{ texts.emptyNotFound.descSuffix }}

} @else { @let n = node()!; @let fm = n.frontmatter;
@if (fm.description) {

} @if (hasActions()) { @if (expanded('actions')) {
}
} @if (issues().length > 0) { ({{ issues().length }}) @if (expanded('findings')) {
    @for (issue of sortedIssues(); track $index) {
  • {{ issue.severity }} {{ issue.analyzerId }}

    {{ issue.message }}

    @if (issue.fix?.summary; as fixSummary) {

    {{ texts.findingHintLabel }} {{ fixSummary }}

    }
  • }
}
} @if (hasConnections()) { @if (expanded('connections')) { } } @if (hasVendorFrontmatter()) {
} @if (hasAnnotations()) { @if (sidecarFileName(); as sf) { ({{ sf }}) } @if (expanded('annotations')) { } } @if (showBody()) { @if (expanded('body')) { @switch (bodyState()) { @case ('loading') {

{{ texts.body.loading }}

} @case ('ready') { @let raw = bodyView() === 'raw';
@if (raw) {
} @else {
} } } }
} @if (hasPluginContributions()) { @if (expanded('plugins')) { } } @if (hasMetadata()) { @if (expanded('metadata')) { } }
}