10 lines
381 B
HTML
10 lines
381 B
HTML
|
<article class="{{ with .Section }}section-{{ . | urlize }} {{ end }}full-view">
|
||
|
<header>
|
||
|
<h1 class="title {{ if $.Param "submitted" | default false }}title-submitted{{ end }}"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
|
||
|
{{ if $.Param "submitted" | default false }}{{ partial "submitted.html" . }}{{ end -}}
|
||
|
</header>
|
||
|
<div class="content">
|
||
|
{{ .Content }}
|
||
|
</div>
|
||
|
</article>
|