You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
693 B
26 lines
693 B
<article class="shadow float-on-hover card">
|
|
<div class="article-image">
|
|
<a href=" {{ .Permalink }}">
|
|
{{ partial "responsive-image.html" (dict "context" .)}}
|
|
</a>
|
|
</div>
|
|
<div class="article-info-container">
|
|
<div class="article-info">
|
|
{{ range first 1 (.GetTerms "tags") }}
|
|
<a class="small-text" href="{{ .Permalink }}">{{ .LinkTitle }}</a>
|
|
{{ end }}
|
|
<a href="{{ .Permalink }}" class="article-title fill-wh">
|
|
<h2>{{ .Title | markdownify }}</h2>
|
|
{{ if ne .Kind "term"}}
|
|
<span class="date">
|
|
{{ if .Date }}
|
|
{{ .Date.Format "2006/01/02" }}
|
|
{{ else }}
|
|
TBD
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
|