14 lines
505 B
HTML
14 lines
505 B
HTML
|
<section class="cad-list">
|
||
|
{{ $pages := where site.RegularPages ".Params.tags" "intersect" (slice "cad") }}
|
||
|
{{- with $pages }}
|
||
|
{{ range .ByPublishDate }}
|
||
|
<article>
|
||
|
<a class="title" href="{{ .RelPermalink }}">{{ with .Params.Software }}{{.}}{{else}}{{.Title}}{{end}}</a>
|
||
|
<time datetime="{{ .Date | time.Format "2006-01-02"}}">(published {{ .Date | time.Format "2006-01-02"}})</time>
|
||
|
{{ with .Params.License }}
|
||
|
<section class="license">{{.}}</section>
|
||
|
{{end}}
|
||
|
</article>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
</section>
|