mirror of
https://github.com/JimenezJC/mshj_blog.git
synced 2025-12-06 11:09:56 -05:00
11 lines
No EOL
272 B
HTML
11 lines
No EOL
272 B
HTML
{{ define "main" }}
|
|
<h1>List of Posts</h1>
|
|
<ul>
|
|
{{ range .Site.RegularPages }}
|
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
|
{{ if .Params.description }}
|
|
<p>{{ .Params.description }}</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }} |