Category Page in Jekyll
问题 I have a category.html page that will loop through a certain category of posts. {% for post in site.categories.tech %} What I want to display is from the index.html page, when the user clicks {{ post.categories }} Which is generated from a loop that displays all of the posts. {% for post in site.posts %} I need that {{ post.categories }} variable to replace the .tech in the categories.html like this {% for category in site.categories.{{ post.categories }} %} I don't know how to pass the