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

summary-with-image.html 724B

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