mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-07-30 10:11:26 +00:00
.github
assets
content
data
layouts
_default
partials
backlinks.html
contact.html
darkmode.html
footer.html
graph.html
head.html
page-list.html
popover.html
search.html
404.html
index.html
static
.gitignore
.hugo_build.lock
CODE_OF_CONDUCT.md
LICENSE.txt
Makefile
README.md
config.toml
screenshot.png
15 lines
529 B
HTML
15 lines
529 B
HTML
<ul class="section-ul">
|
|
{{- range . -}}
|
|
<li class="section-li">
|
|
<div class="section">
|
|
<div class="desc">
|
|
<h3><a href="{{ .Permalink }}">{{- .Title -}}</a></h3>
|
|
<p>{{- .Summary -}}{{if .Truncated}}...{{end}}</p>
|
|
</div>
|
|
<p class="meta">
|
|
{{ .ReadingTime }} minute read. Last updated {{if ne .Date .Lastmod}}{{ .Lastmod.Format "January 2, 2006" }}{{else}}Unknown{{end}}
|
|
</p>
|
|
</div>
|
|
</li>
|
|
{{- end -}}
|
|
</ul> |