Sha256: 3ed369be0d2b53f5aa4ce282661002b217448837cf300b525c96047570f74458

Contents?: true

Size: 1.45 KB

Versions: 17

Compression:

Stored size: 1.45 KB

Contents

{% assign post = page %}

{% if page.related_posts %}
  {% if major >= 4 and minor >= 1 %}
    {% assign related_posts = site.posts | where_exp:"post", "page.related_posts contains post.path or page.related_posts contains post.url" %}
  {% else %}
    {% assign related_posts_1 = site.posts | where_exp:"post", "page.related_posts contains post.path" %}
    {% assign related_posts_2 = site.posts | where_exp:"post", "page.related_posts contains post.url" %}
    {% assign related_posts = related_posts_1 | concat:related_posts_2 %}
  {% endif %}
{% elsif site.hydejack.use_lsi or site.use_lsi %}
  {% assign related_posts = site.related_posts %}
{% elsif post.categories.first %}
  {% assign related_posts = site.categories[post.categories.first] | where_exp:"post", "post.url != page.url" %}
{% elsif post.tags.first %}
  {% assign related_posts = site.tags[post.tags.first] | where_exp:"post", "post.url != page.url" %}
{% else %}
  {% assign related_posts = site.related_posts %}
{% endif %}

{% if related_posts.size > 0 %}
<aside class="related mb4" role="complementary">
  <h2 class="hr-bottom">{{ site.data.strings.related_posts | default:"Related Posts" }}</h2>

  <ul class="related-posts">
    {% for post in related_posts limit:3 %}
      {% if post %}
        {% include_cached components/post-list-item.html post=post %}
      {% else %}
        <li>Post with path <code>{{ post_path }}</code> not found.</li>
      {% endif %}
    {% endfor %}
  </ul>
</aside>
{% endif %}

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
jekyll-theme-hydejack-9.2.1 _includes/components/related-posts.html
jekyll-theme-hydejack-9.2.0 _includes/components/related-posts.html
jekyll-theme-hydejack-9.1.9 _includes/components/related-posts.html
jekyll-theme-hydejack-9.1.8 _includes/components/related-posts.html
jekyll-theme-hydejack-9.1.7 _includes/components/related-posts.html
jekyll-theme-hydejack-9.1.6 _includes/components/related-posts.html
jekyll-theme-hydejack-9.1.5 _includes/components/related-posts.html
jekyll-theme-hydejack-9.1.4 _includes/components/related-posts.html
jekyll-theme-hydejack-9.1.3 _includes/components/related-posts.html
jekyll-theme-hydejack-9.1.2 _includes/components/related-posts.html
jekyll-theme-hydejack-9.1.1 _includes/components/related-posts.html
jekyll-theme-hydejack-9.1.0 _includes/components/related-posts.html
jekyll-theme-hydejack-9.0.4 _includes/components/related-posts.html
jekyll-theme-hydejack-9.0.3 _includes/components/related-posts.html
jekyll-theme-hydejack-9.0.2 _includes/components/related-posts.html
jekyll-theme-hydejack-9.0.1 _includes/components/related-posts.html
jekyll-theme-hydejack-9.0.0 _includes/components/related-posts.html