github.com/projectcontour/contour@v1.28.2/site/themes/contour/layouts/partials/blog-post-card.html (about)

     1  <div class="col">
     2      <div class="icon">
     3          {{ if .Params.Image }}
     4              <img src="{{ .Params.Image }}" alt="{{ .Title }}" />
     5          {{ else }}
     6              <img src="/img/Contour.svg" alt="{{ .Title }}" />
     7          {{ end }}
     8      </div>
     9      <div class="content">
    10          <h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
    11          <p>{{ .Params.Excerpt }}</p>
    12      </div>
    13  </div>