Initial website deployment
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m44s

This commit is contained in:
Akshay Kolli
2026-07-02 00:28:25 -07:00
commit e240b99cb2
66 changed files with 2774 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{{ with .pages }}
<section class="home-section" id="{{ $.id }}" aria-labelledby="{{ $.id }}-heading">
<h2 id="{{ $.id }}-heading">{{ $.title }}</h2>
<div class="item-list">
{{ range .ByWeight }}
<article class="item-row">
<div class="item-year">{{ with .Date }}{{ .Format "2006" }}{{ end }}</div>
<div>
<a class="item-title" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ with .Description }}<p class="row-summary">{{ . }}</p>{{ end }}
{{ with .Params.status }}<div class="item-meta">{{ . }}</div>{{ end }}
{{ with .Params.links }}
<div class="item-links">
{{ range . }}
<a href="{{ .url }}">{{ .label }}</a>
{{ end }}
</div>
{{ end }}
</div>
</article>
{{ end }}
</div>
</section>
{{ end }}