Skip to content

Commit

Permalink
Fix Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathaniel-Roberts committed Jul 2, 2024
1 parent 83aff87 commit a831342
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion layouts/posts/single.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<footer>
<footer class="footer">
{{ partial "posts/giscus.html" . }}
<section class="container">
©
{{ if (and .Site.Params.since (lt .Site.Params.since now.Year)) }}
{{ .Site.Params.since }} -
{{ end }}
{{ now.Year }}
{{ with .Site.Params.author }} {{ . }} {{ end }}
·
{{ if (and .Site.Params.license) }}
{{ i18n "licensed_under" }} {{ .Site.Params.license | safeHTML }}
·
{{ end }}
{{ i18n "powered_by" }} <a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a> & <a href="https://github.com/luizdepra/hugo-coder/" target="_blank" rel="noopener">Coder</a>.
{{ if (and .Site.Params.commit .GitInfo) }}
[<a href="{{ .Site.Params.commit }}/{{ .GitInfo.Hash }}" target="_blank" rel="noopener">{{ .GitInfo.AbbreviatedHash }}</a>]
{{ end }}
</section>
</footer>

0 comments on commit a831342

Please sign in to comment.