Hugo theme for www.itix.fr
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.
 
 

17 lines
567 B

{{ define "main" }}
<!-- The "single" layout prints a single post -->
<article class="post">
<header>
<h1>{{ .Title }}</h1>
{{- if .Params.description }}
<h4>{{ .Params.description }}</h4>
{{- end }}
{{ partial "post-metadata.html" (dict "current" . "parent" .) -}}
</header>
{{ .Content }}
{{- if and (not .Lastmod.IsZero) (ne .Lastmod .PublishDate) }}
<hr width="100%" id="EOF">
<p>{{ i18n "last_modify_on" }} {{ .Lastmod.Format (i18n "date_format") }}</p>
{{- end }}
</article>
{{ end }}