Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wvuwebgist/71023ca0e028f9bc879263ac8e64cb97 to your computer and use it in GitHub Desktop.

Select an option

Save wvuwebgist/71023ca0e028f9bc879263ac8e64cb97 to your computer and use it in GitHub Desktop.

Revisions

  1. wvuwebgist created this gist Mar 4, 2021.
    11 changes: 11 additions & 0 deletions _exclude-labelled-blog-posts-liquid.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    {% assign blog = site | get_page: 1234 %} <!-- Change this ID to your blog_index page's ID -->
    {% assign articles = blog.articles | filter_articles: tags: "dont-show-stuff-with-this-label", tags_match: "none", limit: 5 %}
    {% if articles.length > 0 %}
    <ul>
    {% for article in articles.all %}
    <li><a href="{{ article.url }}">{{ article.name }}</a></li>
    {% endfor %}
    </ul>
    {% else %}
    <p>No blog posts found. Try again later, perhaps?</p>
    {% endif %}