My layout/members/summary.html has the following code:
<p> The name is: {{ .Params.name }}
<p> Bio: {{ .Params.bio }}
<hr>
I want to be able to change the order of the first two elements depending
on the iteration number. Basically, the first iteration should render as
above and in the second iteration I should render:
<p> Bio: {{ .Params.bio }}
<p> The name is: {{ .Params.name }}
<hr>