grpc.io/layouts/blog/single.html

28 lines
579 B
HTML

{{ define "title" }}
{{ .Title }} – {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<div class="headertext">Blog</div>
</div>
</div>
</div>
<div class="singleblog">
<h1>{{ .Title }}</h1>
<h5>Posted on {{ .Date.Format "Monday, January 02, 2006" }}
{{ cond ( isset $.Params "author" ) "by" "" }}
{{ if isset $.Params "author-link" }}
<a href="{{ $.Param "author-link" }}">{{ $.Param "author" }}</a>
{{ else }}
{{ $.Param "author" }}
{{ end }}
</h5>
<p>
{{ .Content }}
</p>
</div>
{{ end }}