Skip to content

Instantly share code, notes, and snippets.

@wvuwebgist
Last active March 4, 2021 23:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wvuwebgist/88de48f8baed233c8ab14637d3c4c834 to your computer and use it in GitHub Desktop.
Save wvuwebgist/88de48f8baed233c8ab14637d3c4c834 to your computer and use it in GitHub Desktop.
CleanSlate (Liquid): Simplified example of how to pull a featured blog post.
{% assign blog = site | get_page: 123 %} <!-- Change this ID to your blog_index page's ID -->
{% assign articles = blog.articles | filter_articles: tags: "featured", limit: 1 %}
{% for article in articles.all %}
<h1>{{ article.name }}</h1>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment