mirror of
https://github.com/JimenezJC/mshj_blog.git
synced 2025-12-06 09:19:55 -05:00
11 lines
394 B
HTML
11 lines
394 B
HTML
<!-- layouts/_default/list.html -->
|
|
<ul>
|
|
{{ range (where .Site.RegularPages "Section" "!=" "projects") }}
|
|
<li class = "post-list">
|
|
<h3 class="post-list-title"><a href="{{ .RelPermalink }}">{{ .Title }}</a> </h3>
|
|
{{ if .Params.description }}
|
|
<p class = "post-list-description">{{ .Params.description }}</p>
|
|
{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|