Last active
March 4, 2021 23:07
-
-
Save wvuwebgist/88de48f8baed233c8ab14637d3c4c834 to your computer and use it in GitHub Desktop.
CleanSlate (Liquid): Simplified example of how to pull a featured blog post.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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