您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

summary-with-image.html 976B

12345678910111213141516171819202122
  1. {{ $featured_image := .Params.featured_image }}
  2. <article class="bb b--black-10">
  3. <a class="db pv4 ph3 ph0-l no-underline dark-gray dim" href="{{ .URL }}">
  4. <div class="flex flex-column flex-row-ns">
  5. {{ if .Params.featured_image }}
  6. {{/* Trimming the slash and adding absURL make sure the image works no matter where our site lives */}}
  7. {{ $featured_image := (trim $featured_image "/") | absURL }}
  8. <div class="pr3-ns mb4 mb0-ns w-100 w-40-ns">
  9. <img src="{{ $featured_image }}" class="db" alt="image from {{ .Title }}">
  10. </div>
  11. {{ end }}
  12. <div class="w-100{{ if .Params.featured_image }} w-60-ns pl3-ns{{ end }}">
  13. <h1 class="f3 fw1 athelas mt0 lh-title">{{ .Title }}</h1>
  14. <div class="f6 f5-l lh-copy nested-copy-line-height">
  15. {{ .Summary }}
  16. </div>
  17. {{/* TODO: add author
  18. <p class="f6 lh-copy mv0">By {{ .Author }}</p> */}}
  19. </div>
  20. </div>
  21. </a>
  22. </article>