Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

menu-contextual.html 638B

1234567891011121314151617181920212223
  1. {{- if .Params.toc -}}
  2. <div class="bg-light-gray pa3 nested-list-reset nested-copy-line-height nested-links">
  3. <p class="f5 b mb3">What's in this {{ humanize .Type }}</p>
  4. {{ .TableOfContents }}
  5. </div>
  6. {{- end -}}
  7. {{ $related := .Site.RegularPages.Related . | first 15 }}
  8. {{ with $related }}
  9. <div class="bg-light-gray pa3 nested-list-reset nested-copy-line-height nested-links">
  10. <p class="f5 b mb3">Related</p>
  11. <ul class="pa0 list">
  12. {{ range . }}
  13. <li class="mb2">
  14. <a href="{{ .RelPermalink }}">
  15. {{- .Title -}}
  16. </a>
  17. </li>
  18. {{ end }}
  19. </ul>
  20. </div>
  21. {{ end }}