No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

37 líneas
1.1KB

  1. {{ define "title" -}}
  2. {{ .Title }} | {{ .Site.Title }}
  3. {{- end }}
  4. {{ define "header" }}
  5. {{ partial "masthead.html" . }}
  6. {{ end }}
  7. {{ define "main" }}
  8. <header>
  9. <h1>{{ .Title }}</h1>
  10. {{ if .Description }}
  11. <blockquote itemprop="description">{{ .Description }}</blockquote>
  12. {{ end }}
  13. </header>
  14. {{/* TODO: Allow schema specification by type */}}
  15. {{/* {{ template "_internal/schema.html" . }} */}}
  16. {{ .Content }}
  17. <footer>
  18. <hr>
  19. <p>
  20. Published
  21. {{ with .Params.categories }}
  22. in <span itemprop="articleSection">{{ delimit (apply (apply (sort .) "partial" "category-link.html" ".") "chomp" ".") ", " " and " }}</span>
  23. {{ end }}
  24. {{ with .Params.features }}
  25. using {{ delimit (apply (apply (sort .) "partial" "feature-link.html" ".") "chomp" ".") ", " " and " }}.
  26. {{ else }}
  27. using basic features.
  28. {{ end }}
  29. </p>
  30. {{ partial "post/related-content.html" . }}
  31. </footer>
  32. {{ end }}
  33. {{ define "footer" }}
  34. {{ partial "powered-by.html" . }}
  35. {{ partial "cookie-disclaimer.html" . }}
  36. {{ end }}