footer.html 709 B

12345678910111213141516171819
  1. <footer class="article-footer">
  2. {{ partial "article/components/tags" . }}
  3. {{ if and (.Site.Params.article.license.enabled) (not (eq .Params.license false)) }}
  4. <section class="article-copyright">
  5. {{ partial "helper/icon" "copyright" }}
  6. <span>{{ default .Site.Params.article.license.default .Params.license | markdownify }}</span>
  7. </section>
  8. {{ end }}
  9. {{- if ne .Lastmod .Date -}}
  10. <section class="article-lastmod">
  11. {{ partial "helper/icon" "clock" }}
  12. <span>
  13. {{ T "article.lastUpdatedOn" }} {{ .Lastmod.Format ( or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" ) }}
  14. </span>
  15. </section>
  16. {{- end -}}
  17. </footer>