1<article class="bb b--black-10">
2 <a class="db pv4 ph3 ph0-l no-underline dark-gray dim" href="{{ .Permalink }}">
3 <div class="flex flex-column flex-row-ns">
4 {{ $featured_image := partial "func/GetFeaturedImage.html" . }}
5 {{ if $featured_image }}
6 <div class="pr3-ns mb4 mb0-ns w-100 w-40-ns">
7 <img src="{{ $featured_image }}" class="db" alt="image from {{ .Title }}">
8 </div>
9 {{ end }}
10 <div class="w-100{{ if $featured_image }} w-60-ns pl3-ns{{ end }}">
11 <h1 class="f3 fw1 athelas mt0 lh-title">{{ .Title }}</h1>
12 <div class="f6 f5-l lh-copy nested-copy-line-height">
13 {{ .Summary }}
14 </div>
15 {{/* TODO: add author
16 <p class="f6 lh-copy mv0">By {{ .Author }}</p> */}}
17 </div>
18 </div>
19 </a>
20</article>