Initial Blog Commit

This commit is contained in:
Juan 2025-07-04 16:10:22 -04:00
commit 07775036ce
92 changed files with 4980 additions and 0 deletions

View file

@ -0,0 +1,11 @@
<!-- layouts/_default/list.html -->
<ul>
{{ range first 5 (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>