mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-09-26 21:18:04 +00:00
Fix nil pointers and paginator errors
This commit is contained in:
committed by
Denise
parent
bce6453fa3
commit
f48598489c
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
title: Rancher Server Tags
|
title: Rancher Server Tags
|
||||||
draft: true
|
draft: true
|
||||||
layout: single-docs-left
|
layout: single-docs
|
||||||
weight: 200
|
weight: 200
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{{ $.Scratch.Set "topLevel" . }}
|
{{ .Scratch.Set "topLevel" . }}
|
||||||
{{ $.Scratch.Set "secondLevel" . }}
|
{{ .Scratch.Set "secondLevel" . }}
|
||||||
|
|
||||||
<nav>
|
<nav>
|
||||||
<!-- tabs -->
|
<!-- tabs -->
|
||||||
@@ -10,8 +10,8 @@
|
|||||||
<a href="{{ .URL }}" class="btn bg-link p-a-0">
|
<a href="{{ .URL }}" class="btn bg-link p-a-0">
|
||||||
<span class="p-h-xs">
|
<span class="p-h-xs">
|
||||||
{{ range .Site.Sections }}
|
{{ range .Site.Sections }}
|
||||||
{{ if .IsAncestor $.CurrentSection }}
|
{{ if .IsAncestor .CurrentSection }}
|
||||||
{{ $.Scratch.Set "topLevel" . }}
|
{{ .Scratch.Set "topLevel" . }}
|
||||||
{{ .Title }}
|
{{ .Title }}
|
||||||
{{end}}
|
{{end}}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|||||||
Reference in New Issue
Block a user