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