{{ define "main" }}
{{ with.Content }} {{ . }} {{ end }}
{{ range $name, $path := $.Param "socialOptions" }} {{ if (and $path (ne $name "email")) }} {{ partial (print "svgs/social/" $name ".svg") (dict "width" 25 "height" 25) }} {{ end }} {{ end }}
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }} {{ $projects := where .Site.RegularPages "Section" "projects" }}
{{ $pages = .Site.Taxonomies.labels.readme }} {{ range $i,$e := $pages }} {{if modBool $i 2}} {{ end }} {{ end }}
{{ if gt (len $projects) 0}}

Projects

{{ range $projects.ByWeight }}
{{ .Params.icon }}

{{ .Title }}

{{ .Params.description }}
{{ end }}
{{ end }}
{{ end }}