single.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {{ define "title" }}
  2. {{ .Site.Title }}
  3. {{ end }}
  4. {{ define "nav" }}
  5. <!-- silence is golden -->
  6. {{ end }}
  7. {{ define "main" }}
  8. <main id="main">
  9. <nav id="toc" class="toc patterns" aria-labelledby="toc-heading">
  10. <h2 id="toc-heading">Table of contents</h2>
  11. {{ $current := . }}
  12. {{ range $.Site.Home.Sections }}
  13. <ul id="patterns-list">
  14. {{ range .Pages.ByWeight }}
  15. <li class="pattern">
  16. <a href="#{{ .Title | urlize }}" {{ if eq $current.Title .Title }}aria-current="page"{{ end }}>
  17. <svg class="bookmark-icon" aria-hidden="true" viewBox="0 0 40 50" focusable="false">
  18. <use xlink:href="#bookmark"></use>
  19. </svg>
  20. <span class="text">{{ .Title }}</span>
  21. </a>
  22. </li>
  23. {{ end }}
  24. {{ range .Sections.ByWeight }}
  25. <li>
  26. <h3>{{ .Title }}</h3>
  27. <ul>
  28. {{ range .Pages.ByWeight }}
  29. <li class="pattern">
  30. <a href="#{{ .Title | urlize }}" {{ if eq $current.Title .Title }}aria-current="page"{{ end }}>
  31. <svg class="bookmark-icon" aria-hidden="true" viewBox="0 0 40 50" focusable="false">
  32. <use xlink:href="#bookmark"></use>
  33. </svg>
  34. <span class="text">{{ .Title }}</span>
  35. </a>
  36. </li>
  37. {{ end }}
  38. </ul>
  39. </li>
  40. {{ end }}
  41. </ul>
  42. {{ end }}
  43. </nav>
  44. {{ $current := . }}
  45. {{ range $.Site.Home.Sections }}
  46. {{ range .Pages.ByWeight }}
  47. <div class="pattern-section">
  48. <h1 id="{{ .Title | urlize }}" tabindex="-1">
  49. <svg class="bookmark-icon" aria-hidden="true" viewBox="0 0 40 50" focusable="false">
  50. <use xlink:href="#bookmark"></use>
  51. </svg>
  52. {{ .Title }}
  53. </h1>
  54. {{ .Content }}
  55. </div>
  56. {{ end }}
  57. {{ range .Sections.ByWeight }}
  58. {{ range .Pages.ByWeight }}
  59. <div class="pattern-section">
  60. <h1 id="{{ .Title | urlize }}" tabindex="-1">
  61. <svg class="bookmark-icon" aria-hidden="true" viewBox="0 0 40 50" focusable="false">
  62. <use xlink:href="#bookmark"></use>
  63. </svg>
  64. {{ .Title }}
  65. </h1>
  66. {{ .Content }}
  67. </div>
  68. {{ end }}
  69. {{ end }}
  70. {{ end }}
  71. </main>
  72. {{ end }}