Updates migrating previous theme to hugo-bearcub
Some checks failed
github pages / deploy (push) Failing after 2s

This commit is contained in:
Alex Selimov 2026-03-02 19:38:07 -05:00
parent 1d12a76549
commit ef8f417c6c
14 changed files with 213 additions and 26 deletions

View file

@ -1,3 +1,19 @@
{{ define "main" }}
{{ .Content }}
<content>
{{ .Content }}
<h2>My most recent posts</h2>
<ul class="blog-posts">
{{ $max := default 3 .Site.Params.postsToShowOnIndex }}
{{ $posts := where .Site.RegularPages "Section" "posts" }}
{{ range first $max $posts.ByDate.Reverse }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
<p><a href="/posts/">All posts →</a></p>
</content>
{{ end }}