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