post_li.html 1.0 KB

1234567891011121314151617181920212223242526272829
  1. {{ $post := .post }}
  2. <div class="card-simple" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
  3. {{ partial "article_metadata" (dict "content" $post "is_list" 1) }}
  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="headline">
  11. <a href="{{ $post.Permalink }}" itemprop="url">{{ $post.Title }}</a>
  12. </h3>
  13. <div class="article-style" itemprop="articleBody">
  14. {{ if $post.Params.summary }}
  15. <p>{{ printf "%s" $post.Params.summary | markdownify }}</p>
  16. {{ else if $post.Truncated }}
  17. {{ $post.Summary }}
  18. {{ else }}
  19. {{ $post.Content }}
  20. {{ end }}
  21. </div>
  22. <p class="read-more" itemprop="mainEntityOfPage">
  23. <a href="{{ $post.Permalink }}" class="btn btn-primary btn-outline">
  24. {{ i18n "continue_reading" }}
  25. </a>
  26. </p>
  27. </div>