10 lines
381 B
HTML
10 lines
381 B
HTML
<article class="{{ with .Section }}section-{{ . | urlize }} {{ end }}list-view">
|
|
<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>
|