Files
hugo_it-services/themes/poison/layouts/projects/projects.html
T
2025-02-20 08:28:31 -05:00

20 lines
527 B
HTML

{{ define "main" -}}
{{ if .Site.Params.light_dark }}
{{ partial "light_dark.html" . }}
{{ end }}
<h1 class="title">{{ .Title }}</h1>
<div class="posts">
{{ range .Paginator.Pages }}
<div class="project">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
<p>
{{ if .Params.featuredImage }}
<img src="{{ .Params.featuredImage }}"><br>
{{ end }}
{{ .Summary }}
</p>
</div>
{{ end }}
</div>
{{ end }}