sidebar.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <a class="brand" href="/">
  2. <img class="link-logo" src="{{ relURL "brand.svg" }}" alt="Mastodon" />
  3. </a>
  4. <ul>
  5. {{ $currentPage := . }}
  6. {{ range .Site.Menus.docs.ByWeight }}
  7. <li>
  8. {{ if .Page }}
  9. <a href="{{ .URL }}" class="{{ if $currentPage.IsMenuCurrent "docs" . }}active{{ end }}">{{ .Name }}</a>
  10. {{ else }}
  11. <span class="sub-title">{{ .Name }}</span>
  12. {{ end }}
  13. {{ if .HasChildren }}
  14. <ul class="sub-menu">
  15. {{ range .Children }}
  16. <li>
  17. <a href="{{ .URL }}" class="{{ if $currentPage.IsMenuCurrent "docs" . }}active{{ end }}">{{ .Name }}</a>
  18. {{ if .HasChildren }}
  19. <ul class="sub-menu">
  20. {{ range .Children }}
  21. <li>
  22. <a href="{{ .URL }}" class="{{ if $currentPage.IsMenuCurrent "docs" . }}active{{ end }}">{{ .Name }}</a>
  23. </li>
  24. {{ end }}
  25. </ul>
  26. {{ end }}
  27. </li>
  28. {{ end }}
  29. </ul>
  30. {{ end }}
  31. </li>
  32. {{ end }}
  33. </ul>