15 lines
236 B
HTML
15 lines
236 B
HTML
{{- define "content" -}}
|
|
|
|
{{ $posts := .GetPage "/posts" }}
|
|
|
|
{{ partial "post-list" $posts }}
|
|
|
|
<hr />
|
|
|
|
<small>
|
|
List of posts by:
|
|
<a href="/languages">[languages]</a> ·
|
|
<a href="/tags">[tags]</a>
|
|
</small>
|
|
|
|
{{- end -}}
|