breadcrumb_helper.html 296 B

123456789101112
  1. {{ with .Parent }}
  2. {{ partial "breadcrumb_helper" . }}
  3. <li class="breadcrumb-item">
  4. <a href="{{ .RelPermalink }}">
  5. {{ if .IsHome }}
  6. {{ (i18n "home" | default "Home") | emojify }}
  7. {{ else }}
  8. {{ .LinkTitle | emojify }}
  9. {{ end }}
  10. </a>
  11. </li>
  12. {{ end }}