How to show a single block on demo theme 'about' page

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?

Hey @douggough

To get the first block, second block, etc.

{% set firstBlock = homepage.blocks.0 %}
{% set secondBlock = homepage.blocks.1 %}