entrypanel.html 760 B

123456789101112
  1. {{- $images := default (slice "/imgs/no-image-new.webp" "/imgs/no-image-new.png") .Params.Images }}
  2. {{- $altText := default "No alt text" .Params.ImageAltText }}
  3. <div class="panel my-2 h-entry">
  4. <h2 id="{{ .Section }}-{{ .Title | anchorize }}"><a href="{{ .RelPermalink }}" class="u-url p-name">{{ .Title }}</a></h2>
  5. <div class="flex flex-row flex-wrap md:flex-nowrap mt-2">
  6. <span class="image-wrapper w-full h-32 md:w-32 md:h-32">
  7. <img srcset="{{ delimit $images ", " }}" src="{{ index (last 1 $images) 0 }}" alt="{{ $altText }}" class="u-photo" />
  8. </span>
  9. <p class="m-2 flex-1 p-summary">{{ .Params.Intro | markdownify }}</p>
  10. <span class="hidden p-author">{{ .Site.Params.Author }}</span>
  11. </div>
  12. </div>