post-related.swig 1008 B

1234567891011121314151617181920
  1. {%- set popular_posts = popular_posts_json(theme.related_posts.params, page) %}
  2. {%- if popular_posts.json and popular_posts.json.length > 0 %}
  3. <div class="popular-posts-header">{{ theme.related_posts.title or __('post.related_posts') }}</div>
  4. <ul class="popular-posts">
  5. {%- for popular_post in popular_posts.json %}
  6. <li class="popular-posts-item">
  7. {%- if popular_post.date and popular_post.date != '' %}
  8. <div class="popular-posts-date">{{ popular_post.date }}</div>
  9. {%- endif %}
  10. {%- if popular_post.img and popular_post.img != '' %}
  11. <div class="popular-posts-img"><img src="{{ popular_post.img }}"></div>
  12. {%- endif %}
  13. <div class="popular-posts-title"><a href="{{ popular_post.path }}" rel="bookmark">{{ popular_post.title }}</a></div>
  14. {%- if popular_post.excerpt and popular_post.excerpt != '' %}
  15. <div class="popular-posts-excerpt"><p>{{ popular_post.excerpt }}</p></div>
  16. {%- endif %}
  17. </li>
  18. {%- endfor %}
  19. </ul>
  20. {%- endif %}