Hugo theme.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
668 B

  1. {{ define "main" }}
  2. <article>
  3. <h1>{{ .Title | markdownify }}</h1>
  4. <div id=description>
  5. {{ .Description | markdownify }}
  6. </div>
  7. <div class=postmeta>
  8. <a href=/>{{ .Site.Params.AuthorName | markdownify }}</a>
  9. &middot;
  10. <time datetime={{ .Date.Format "2006-01-02" }}>{{ .Date.Format "2 January 2006" }}</time>
  11. </div>
  12. {{ .Content }}
  13. </article>
  14. {{ if .Site.Params.ShowTwitterDMLink }}
  15. <p id=feedback>Your polite comments are welcome. <a href="https://twitter.com/messages/compose?recipient_id={{ .Site.Params.AuthorTwitterID }}&text={{ .Title }}:%20">Send me a private message on Twitter.</a></p>
  16. {{ end }}
  17. {{ end }}