~ruther/blog

blog/themes/poison/layouts/projects/projects.html -rw-r--r-- 527 bytes
1e4dd2e3 — Rutherther chore: add rsync 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ 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 }}