I am trying to print something at the end of content if the page isn’t .IsHome
. The original is:
<div class='container entry-content'>
{{ .Content }}
</div>
I want something like:
<div class='container entry-content'>
{{ .Content }}
{{ if ne .IsHome }}
<p class="endofpage">§</p>
{{ end }}
</div>
That, of course, isn’t working. Help?