single.html 786 B

12345678910111213141516171819202122232425
  1. {{ define "main" }}
  2. <main id="main">
  3. <h1>{{ .Title }}</h1>
  4. {{ if isset .Params "tags" }}
  5. <div class="tags">
  6. <strong aria-hidden="true">Tags: </strong>
  7. <ul aria-label="tags">
  8. {{ range .Params.tags }}
  9. {{ if ne . "example tag"}}
  10. {{ if ne . "another tag"}}
  11. <li>
  12. <svg class="tag-icon" aria-hidden="true" height="50" width="50" viewBox="0 0 177.16535 177.16535">
  13. <use xlink:href="#tag"></use>
  14. </svg>
  15. <a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
  16. </li>
  17. {{ end }}
  18. {{ end }}
  19. {{ end }}
  20. </ul>
  21. </div>
  22. {{ end }}
  23. {{ .Content }}
  24. </main>
  25. {{ end }}