Skip to content
Snippets Groups Projects
terms.html 288 B
Newer Older
  • Learn to ignore specific revisions
  • {{ define "main" }}
    
      {{ partial "heading.html" . }}
    
      {{ .Content }}
    
      <ul class="Tags">
        {{ range .Pages }}
          <li class="Tags-item u-background">
            <a class="Tags-link u-clickable" href="{{ .RelPermalink }}">{{ .Title }}</a>
          </li>
        {{ end }}
      </ul>
    
    {{ end }}