post_li.html 1003 B

1234567891011121314151617181920212223242526272829
  1. {{ $post := .post }}
  2. {{ $page := .page }}
  3. <div class="article-list-item" itemscope itemprop="blogPost">
  4. {{ $preview := $post.Params.header.preview | default true }}
  5. {{ if and $post.Params.header.image $preview }}
  6. <a href="{{ $post.Permalink }}">
  7. <img src="{{ "/img/" | relURL }}{{ $post.Params.header.image }}" class="article-banner" itemprop="image">
  8. </a>
  9. {{end}}
  10. <h3 class="article-title" itemprop="name">
  11. <a href="{{ $post.Permalink }}" itemprop="url">{{ $post.Title }}</a>
  12. </h3>
  13. {{ partial "article_metadata" (dict "content" $post "is_list" 1) }}
  14. <div class="article-style" itemprop="articleBody">
  15. {{ if $post.Params.summary }}
  16. <p>{{ printf "%s" $post.Params.summary | markdownify }}</p>
  17. {{ else if $post.Truncated }}
  18. {{ $post.Summary }}
  19. {{ else }}
  20. {{ $post.Content }}
  21. {{ end }}
  22. </div>
  23. <p class="read-more">
  24. <a href="{{ $post.Permalink }}" class="btn btn-primary btn-outline">
  25. {{ i18n "continue_reading" }}
  26. </a>
  27. </p>
  28. </div>