2020-09-22 15:35:44 +02:00
{{ define "stylesheet" }}{{ $scss := resources.Get "projects/list.scss" }}{{ $style := $scss | resources.ToCSS }}
2020-09-14 16:24:02 +02:00
< link rel = "stylesheet" href = "{{ $style.Permalink }}" type = "text/css" media = "screen" / >
{{ end }}
{{ define "main" }}
< main class = "container" >
< section >
< header >
< h1 > {{ .Params.heading }}< / h1 >
< span class = "subtitle" > {{.Params.subheading}}< / span >
< / header >
{{ .Content }}
< / section >
< section class = "section-articles" >
{{ range .Pages }}
< a href = "{{ .Permalink }}" >
< article >
< h1 > {{ .Title }}< / h1 >
< p class = "" title = "last change: {{ .Date.Format " 2 Jan 2006 " } } " > {{ with .Params.activetime }}< span class = "date" > {{ . }}< / span > {{ end }} {{ with .Params.status }}< span class = "status" > {{ . }}< / span > {{ end }}< / p >
{{ with .Description }}< p > {{ . }}< / p > {{ end }}
< img { { with . Params . featured_image } } src = "{{ . | relURL }}" { { end } } >
< / article >
< / a >
{{ end }}
< / section >
< / main >
{{ end }}