2023-09-14 09:55:12 +00:00
|
|
|
<section class="cad-list">
|
2023-09-16 11:50:53 +00:00
|
|
|
{{ $pages := where site.RegularPages ".Params.tags" "intersect" (slice "cad-shootout") }}
|
2023-09-14 09:55:12 +00:00
|
|
|
{{- with $pages }}
|
|
|
|
{{ range .ByPublishDate }}
|
|
|
|
<article>
|
2023-09-15 22:01:55 +00:00
|
|
|
<time datetime="{{ .Date | time.Format "2006-01-02"}}">{{ .Date | time.Format "2006-01-02"}}</time>
|
2023-09-14 09:55:12 +00:00
|
|
|
<a class="title" href="{{ .RelPermalink }}">{{ with .Params.Software }}{{.}}{{else}}{{.Title}}{{end}}</a>
|
|
|
|
{{ with .Params.License }}
|
|
|
|
<section class="license">{{.}}</section>
|
|
|
|
{{end}}
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</section>
|