In the demo theme, all the tailor blocks are printed to the page one after another using this code:
{% for block in homepage.blocks %}
{% partial 'blocks/' ~ str_slug(block.type) block=block %}
{% endfor %}
How would I print just one of the blocks to the page? And how could I pass the block into the partial so that I can access the block’s fields?