pattern.html 311 B

123456789
  1. {{ $title := .Get 0 }}
  2. {{ range .Site.Pages }}
  3. {{ if eq .Title $title }}
  4. <a class="pattern-link" href="{{ .Permalink }}">
  5. <svg class="bookmark" aria-hidden="true" height="50" width="40" viewBox="0 0 40 50"><use xlink:href="#bookmark"></use></svg>
  6. {{- .Title -}}
  7. </a>
  8. {{ end }}
  9. {{ end }}