14 lines
457 B
HTML
14 lines
457 B
HTML
<span class="next-entry"></span>
|
|
<div class="h-entry">
|
|
{{ range . }}
|
|
<h2 class="p-name">{{ .Name }}</h2>
|
|
{{ if .Content }}
|
|
{{ if .Content.HTML }}
|
|
<div class="e-content">{{ .Content.HTML }}</div>
|
|
{{ else }}
|
|
<div class="p-content">{{ .Content.Text }}</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
<time datetime="{{ .Published }}">{{ .Published }}</time>
|
|
{{ end }}
|
|
</div> |