baseof.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <link rel="canonical" href="{{ .Permalink }}">
  8. <link href="https://fonts.googleapis.com/css?family=Miriam+Libre:700&text=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz%26" rel="stylesheet">
  9. <link href="https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700" rel="stylesheet">
  10. <link rel="stylesheet" href="/css/prism.css" />
  11. <link rel="stylesheet" type="text/css" href="/css/styles.css">
  12. <title>
  13. {{ block "title" . }}
  14. {{ .Title }} | {{ .Site.Title }}
  15. {{ end }}
  16. </title>
  17. </head>
  18. <body>
  19. {{ partial "svg.html" . }}
  20. <div class="wrapper">
  21. <header class="intro-and-nav" role="banner">
  22. <div>
  23. <div class="intro">
  24. <a class="logo" href="/" aria-label="{{ .Site.Title }} pattern library home page">
  25. <img src="{{ .Site.BaseURL }}images/logo.png" alt="">
  26. </a>
  27. <p class="library-desc">{{ .Site.Params.Description | safeHTML }}</p>
  28. </div>
  29. <nav id="patterns-nav" class="patterns" role="navigation">
  30. {{ $current := . }}
  31. {{ range $.Site.Home.Sections }}
  32. <ul>
  33. {{ range .Pages.ByWeight }}
  34. <li class="pattern">
  35. <a href="{{ .RelPermalink }}" {{ if eq $current.Title .Title }}aria-current="page"{{ end }}>
  36. <svg class="bookmark" aria-hidden="true" height="50" width="40" viewBox="0 0 40 50"><use xlink:href="#bookmark"></use></svg>
  37. <span>{{ .Title }}</span>
  38. </a>
  39. </li>
  40. </li>
  41. {{ end }}
  42. {{ range .Sections.ByWeight }}
  43. <li>
  44. <h3>{{ .Title }}</h3>
  45. <ul>
  46. {{ range .Pages.ByWeight }}
  47. <li class="pattern">
  48. <a href="{{ .RelPermalink }}" {{ if eq $current.Title .Title }}aria-current="page"{{ end }}>
  49. <svg class="bookmark" aria-hidden="true" height="50" width="40" viewBox="0 0 40 50"><use xlink:href="#bookmark"></use></svg>
  50. <span>{{ .Title }}</span>
  51. </a>
  52. </li>
  53. {{ end }}
  54. </ul>
  55. </li>
  56. {{ end }}
  57. </ul>
  58. {{ end }}
  59. </nav>
  60. </div>
  61. </header>
  62. <div class="main-and-footer">
  63. <div>
  64. {{ block "main" . }}
  65. {{ end }}
  66. <footer role="contentinfo">
  67. Powered by <strong>Infusion</strong>, a <strong>The Paciello Group</strong> project<br>
  68. For general enquiries, contact us on info@paciellogroup.com
  69. </footer>
  70. </div>
  71. </div>
  72. </div>
  73. {{ if eq .Type "patterns" }}
  74. <script src="/js/prism.js"></script>
  75. {{ end }}
  76. <script src="/js/dom-scripts.js"></script>
  77. </body>
  78. </html>