patternLink.html 325 B

1234567891011
  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">
  6. <use xlink:href="#bookmark"></use>
  7. </svg>
  8. {{ .Title }}
  9. </a>
  10. {{ end }}
  11. {{ end }}